We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
syn region
❯ cat foo.vim syn region foo start=/^ \+\|\tx/ end=/x/
No parse errors, as this is valid.
❯ vint foo.vim foo.vim:1:29: E10: \\ should be followed by /, ? or & (see vim-jp/vim-vimlparser)
Wrap the space before the \t in [ ].
\t
[ ]
❯ cat foo.vim syn region foo start=/^[ ]\+\|\tx/ end=/x/ ❯ vint foo.vim ❯
❯ vint --version 0.3.21 ❯ vim --version NVIM v0.7.2 Build type: Release LuaJIT 2.1.0-beta3 Compiled by linuxbrew@649894113f22 ❯ cat /etc/lsb-release DISTRIB_ID=Pop DISTRIB_RELEASE=20.04 DISTRIB_CODENAME=focal DISTRIB_DESCRIPTION="Pop!_OS 20.04 LTS"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Example
Expected behavior
No parse errors, as this is valid.
Actual behavior:
Workaround
Wrap the space before the
\t
in[ ]
.Version information
The text was updated successfully, but these errors were encountered: