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: vim-python/python-syntax
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: edlanglois/python-syntax
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 1 file changed
  • 3 contributors

Commits on Dec 4, 2025

  1. Add support for match expression

    This is based on the work of [@g15ecb](https://github.com/g15ecb)
    
    g15ecb@988efe9
    mdomke authored and elanglois-sai committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    e4451fe View commit details
    Browse the repository at this point in the history
  2. Add new exceptions

    Abrosimov-a-a authored and elanglois-sai committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    2c89ec5 View commit details
    Browse the repository at this point in the history
  3. Split FIXME, TODO, XXX

    Abrosimov-a-a authored and elanglois-sai committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    d821ee2 View commit details
    Browse the repository at this point in the history
  4. Add brackets highlight

    Abrosimov-a-a authored and elanglois-sai committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    dcb3e71 View commit details
    Browse the repository at this point in the history
  5. Avoid spellchecking the f in an f-string

    Before this commit the spellchecker highlights everything in the following:
    
    f'correct word'
    ^^^^^^^^^
    
    f'wierd word'
    ^^^^^^^
    
    By adding the `matchgroup` directive, the start and end of the region are not
    considered when spellchecking. The examples become:
    
    f'correct word'
    
    f'weird word'
      ^^^^^
    m-zat authored and elanglois-sai committed Dec 4, 2025
    Configuration menu
    Copy the full SHA
    50f1c25 View commit details
    Browse the repository at this point in the history
Loading