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: codemirror/codemirror5
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.57.0
Choose a base ref
...
head repository: codemirror/codemirror5
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.58.1
Choose a head ref
  • 19 commits
  • 23 files changed
  • 5 contributors

Commits on Aug 20, 2020

  1. Configuration menu
    Copy the full SHA
    4105e36 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. Configuration menu
    Copy the full SHA
    75f2001 View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2020

  1. Configuration menu
    Copy the full SHA
    62d84ab View commit details
    Browse the repository at this point in the history
  2. Don't default vim demo to contenteditable

    That option was apparently left over from a debugging session
    marijnh committed Aug 22, 2020
    Configuration menu
    Copy the full SHA
    6fcc49d View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2020

  1. [vim] Add black hole register

    benhormann authored and marijnh committed Sep 1, 2020
    Configuration menu
    Copy the full SHA
    63ab616 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2020

  1. Add desmos sponsor link

    marijnh committed Sep 4, 2020
    Configuration menu
    Copy the full SHA
    b584546 View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2020

  1. Make backspace delete by codepoint

    Closes #6408
    marijnh committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    147a2f9 View commit details
    Browse the repository at this point in the history
  2. Fix bug causing a deleted editor to continue believing it had focus

    Which kept the cursor blink and input poll intervals alive, leaking
    memory.
    
    Closes #6410
    marijnh committed Sep 11, 2020
    Configuration menu
    Copy the full SHA
    2250b4a View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2020

  1. Configuration menu
    Copy the full SHA
    fd2e322 View commit details
    Browse the repository at this point in the history
  2. Add vim emulation support for gn and gN.

    If we are given the following snippet of text:
    
    ```
    A green green sky.
      _
    ```
    
    We can search for the word "green" with `/green`, and then use `gn` to
    select the next occurrence of "green" in visual mode.
    
    ```
    A green green sky.
      -----
    ```
    
    Alternatively, we can use `cgn` and then enter the word "blue" to change the
    word "green" to "blue".
    
    ```
    A blue green sky.
    ```
    
    Then we can use the `.` operator to repeat the change:
    
    ```
    A blue blue sky.
    ```
    
    Addresses #3851.
    howardjing authored and marijnh committed Sep 13, 2020
    Configuration menu
    Copy the full SHA
    b6da8bf View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Configuration menu
    Copy the full SHA
    db719a2 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2020

  1. [lint addon] Use separate CSS classes for common lint styles

    This changes lint.css to be less reliant on the predefined severities
    (error and warning), in turn making it easier to define custom ones.
    Now all that needs to be done in order to define a new severity, e.g.
    `note`, is to add the following CSS:
    
    ```css
    /* underline */
    .CodeMirror-lint-mark-note {
      background-image: ...;
    }
    
    /* icon */
    .CodeMirror-lint-marker-note, .CodeMirror-lint-message-note {
      background-image: ...;
    }
    ```
    
    Previously, it was necessary to copy many styles that were only
    available under the `CodeMirror-lint-*-error` and
    `CodeMirror-lint-*-warning` classes.
    Clashsoft authored and marijnh committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    18aa69e View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2020

  1. [lint addon] Put error CSS after warning

    By swapping the CSS rules, the error rules take priority in case there
    are markers with both severities on the same token. That token is now
    underlined red instead of yellow, making it consistent with how errors
    take priority in the gutter.
    Clashsoft authored and marijnh committed Sep 20, 2020
    Configuration menu
    Copy the full SHA
    376c0d9 View commit details
    Browse the repository at this point in the history
  2. Set the readonly attribute on the hidden textarea when the editor is …

    …read-only
    
    This prevents cut/paste from showing up in the context menu on Chrome
    (but doesn't help on Firefox).
    
    Closes #6418
    marijnh committed Sep 20, 2020
    Configuration menu
    Copy the full SHA
    66a96a5 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2020

  1. Configuration menu
    Copy the full SHA
    7b63084 View commit details
    Browse the repository at this point in the history
  2. Mark version 5.58.0

    marijnh committed Sep 21, 2020
    Configuration menu
    Copy the full SHA
    76590dc View commit details
    Browse the repository at this point in the history
  3. Fix use of ES6 in addon

    marijnh committed Sep 21, 2020
    Configuration menu
    Copy the full SHA
    c74a1ca View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2020

  1. Configuration menu
    Copy the full SHA
    ca046d7 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2020

  1. Mark version 5.58.1

    marijnh committed Sep 23, 2020
    Configuration menu
    Copy the full SHA
    1c60749 View commit details
    Browse the repository at this point in the history
Loading