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
the header autocompletion trigger only recognize a very reduced subset of valid adornments characters.
{ "key": "preceding_text", "operator": "regex_contains", "operand": "^[=\\-\\*\\+]+" }
So if you have something like
A valid header ~~~<TAB>
It wont be autocompleted.
Complete the regex operand with a complete list of valid adornemets . In python it is:
ADORNEMENTS = r"""[!\"#$%&'\\()*+,\-./:;<=>?@\[\]\^_`{|}~]"""
The text was updated successfully, but these errors were encountered:
Extended list of addornments for headers added. Fixes mgaitan#27
40f2dc2
63ffc9e
No branches or pull requests
the header autocompletion trigger only recognize a very reduced subset of valid adornments characters.
So if you have something like
It wont be autocompleted.
Complete the regex operand with a complete list of valid adornemets . In python it is:
The text was updated successfully, but these errors were encountered: