Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: CodeEditApp/CodeEditTextView
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.11.0
Choose a base ref
...
head repository: CodeEditApp/CodeEditTextView
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.11.1
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on May 27, 2025

  1. Update Build Documentation Workflow

    An attempt to fix the build documentation workflow that's failing on main.
    thecoolwinter authored May 27, 2025
    Configuration menu
    Copy the full SHA
    bc405e4 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. [hotfix:] Layout After New/Removed Lines (#97)

    ### Description
    
    Hotfix to fix mistakenly broken editing capabilities for inserting or deleting new lines.
    
    Updates the layout pass to correctly detect new lines, and if a new one is laid out, continues to layout lines after that line.
    
    Eg:
    ```
    1
    2 <- Insert "\n"
    3
    ```
    Before:
    ```
    [visible text]
    1
    2 <- Layout invalidated
    3 <- Layout _NOT_ invalidated, missing new line.
    ```
    Now:
    ```
    [visible text]
    1
    2 <- Layout invalidated
      <- Layout invalidated
    3 <- Layout invalidated
    ```
    
    Adds a new test case for this.
    
    ### Related Issues
    
    ### Checklist
    
    - [x] I read and understood the [contributing guide](https://github.com/CodeEditApp/CodeEdit/blob/main/CONTRIBUTING.md) as well as the [code of conduct](https://github.com/CodeEditApp/CodeEdit/blob/main/CODE_OF_CONDUCT.md)
    - [x] The issues this PR addresses are related to each other
    - [x] My changes generate no new warnings
    - [x] My code builds and runs on my machine
    - [x] My changes are all related to the related issue above
    - [x] I documented my code
    
    ### Screenshots
    thecoolwinter authored May 28, 2025
    Configuration menu
    Copy the full SHA
    69282e2 View commit details
    Browse the repository at this point in the history
Loading