python-syntax
python-syntax copied to clipboard
Python syntax highlighting for Vim
First off, thanks for maintaining this! I'm wondering if there are plans to upstream these improvements into the upstream Vim syntax highlighting, so that this is directly bundled with Vim....
New in 3.6 (https://docs.python.org/3/library/exceptions.html#ModuleNotFoundError)
First of all, thanks for this awesome project. Really spiced up my Python files! I was wondering if there are any plans to have separate syntax groups for `async` and...
In sublime text, the string literal prefixes (e.g, the "f" in `f'a string'`) and function arguments (names and values) are separate highlight groups: It would be nice if we could...
I ran a `git bisect` and it seems like since commit 8d58bf4 back in 2016 this plugin breaks indentation after a byte string with an unclosed `{`, such as `b'{'`,...
First stab at #65. Defines a new root level matcher, `pythonStringFormat`. The name of this matcher I hope should resemble _a string with an accompanying .format-function_. Naming is a bit...
Hi, thanks for the updated syntax. I found some problems while using the standard vim syntax and this one. I had some very dense comment blocks in some files, and...
Something like this, so the expressions look like code instead of the entire expression being highlighted the same. ```py f'a{b}c' ```
Hello, this is probably pretty dumb, but I can't seem to find an answer for this I'm using Vim v8.0 on a WSL and I can't get any highlights from...
Currently, something like ``` (foo @ bar) ``` incorrectly highlights `bar` as a decorator, when it is in fact an operand of a matrix multiplication (note that this code conforms...