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
When I open a .c file, I am receiving the following error:
"src/main.c" 51L, 907B Error detected while processing BufRead Autocommands for "*.c"..function dist#ft#FTlpc[11]..FileType Autocommands for "c"..function <SNR>35_ClangCompleteInit[146]..<SNR>35_initClangCompletePy thon: line 14: /Users/bob/.vim/bundle/clang_complete/plugin/libclang.py:253: SyntaxWarning: invalid escape sequence '\%' pattern = '/\%' + str(range.start.line) + 'l' + '\%' \ /Users/bob/.vim/bundle/clang_complete/plugin/libclang.py:253: SyntaxWarning: invalid escape sequence '\%' pattern = '/\%' + str(range.start.line) + 'l' + '\%' \ /Users/bob/.vim/bundle/clang_complete/plugin/libclang.py:255: SyntaxWarning: invalid escape sequence '\%' + '\%' + str(range.end.column) + 'c/' /Users/bob/.vim/bundle/clang_complete/plugin/libclang.py:271: SyntaxWarning: invalid escape sequence '\%' pattern = '/\%' + str(diagnostic.location.line) + 'l\%' \ /Users/bob/.vim/bundle/clang_complete/plugin/libclang.py:271: SyntaxWarning: invalid escape sequence '\%' pattern = '/\%' + str(diagnostic.location.line) + 'l\%' \
I have been able to stop the errors from being raised by changing all instances of \% to \\%
\%
\\%
The text was updated successfully, but these errors were encountered:
75946de
No branches or pull requests
When I open a .c file, I am receiving the following error:
I have been able to stop the errors from being raised by changing all instances of
\%
to\\%
The text was updated successfully, but these errors were encountered: