Jia
Jia
Changed snippets expand key mapping from `` to `` because `` is used too common in other scenarios, like auto-completion, indent, candidates selection... And hard coding mapping is not good...this...
- OS: RedHatEnterpriseServer 6.5 (Santiago), 64-bit - Vim 8.0 x86-64 - LLVM with Clang Front End 3.8.0 (I compiled it myself) - `let g:clang_library_path = "/home/j5shi/bin/llvm/3.8.0/lib/libclang.so.3.8"` And when I open...
```bash Vim: Caught deadly signal ABRT Traceback (most recent call last): File "", line 1, in File "/home/j5shi/.vim/bundle/clang_complete/plugin/libclang.py", line 463, in WarmupCache timer = CodeCompleteTimer(0, "", -1, -1, params) TypeError:...
with `let g:cscope_search_case_insensitive = 0`, everything behaviors like before and with `let g:cscope_search_case_insensitive = 1`, searching becomes case-insensitive.
I need to add `-C` option to cscope command line when adding cscope db to enable case-insensitive search, is there any way to add this option? e.g. ``` vim :cs...
``` vim let id = s:dbs[a:dir]['id'] let cscope_files = s:cscope_vim_dir."/".id."_inc.files" let cscope_db = s:cscope_vim_dir.'/'.id.'_inc.db' if ! filereadable(cscope_files) || a:init let cscope_files = s:cscope_vim_dir."/".id.".files" let cscope_db = s:cscope_vim_dir.'/'.id.'.db' if ! filereadable(cscope_files)...
Pull request for issue #9 and #10
Given `fname` = `C:\apps\cygwin\usr\include\bash\general.h`, after parsing, `bufid` will be `D:\apps\cygwin\usr\include\bash\general.h` in some cases, which is incorrect.
Sometimes the `fname` will be parsed as (I've no idea why it happens in that way): `C:\Program Files (x86)\vim\[18*No Name]` So the result of regex `matchstr(fname, '\d\+')` will be `86`,...
It seems that on Sublime Text 3 (Build 3065 on Win64) even `--exclude=/some/path` is set in `CTags.sublime-settings`, when rebuild tags, the path which is set in `--exclude` option is still...