diff options
-rw-r--r-- | contrib/YouCompleteMe/README.md | 15 | ||||
-rw-r--r-- | contrib/YouCompleteMe/ycm_extra_conf.py | 2 |
2 files changed, 12 insertions, 5 deletions
diff --git a/contrib/YouCompleteMe/README.md b/contrib/YouCompleteMe/README.md index 85bbe29dec..940f49363b 100644 --- a/contrib/YouCompleteMe/README.md +++ b/contrib/YouCompleteMe/README.md @@ -1,4 +1,8 @@ -# YouCompleteMe +# YouCompleteMe Integration + +## What is this? + +This provides the necessary to configure vim's YCM plugin to provide C semantic support (completion, go-to-definition, etc) for the neovim project. ## Installation @@ -9,7 +13,10 @@ Install [YouCompleteMe](https://github.com/Valloric/YouCompleteMe). ### Step 2 ```bash -cp ycm_extra_conf.py ../../src/nvim/.ycm_extra_conf.py -echo src/nvim/.ycm_extra_conf.py >> ../../.git/info/exclude -make -C ../.. cmake +cp contrib/YouCompleteMe/ycm_extra_conf.py src/.ycm_extra_conf.py +echo .ycm_extra_conf.py >> .git/info/exclude +make + +(somewhere in you .vimrc files) +autocmd FileType c nnoremap <buffer> <silent> <C-]> :YcmCompleter GoTo<cr> ``` diff --git a/contrib/YouCompleteMe/ycm_extra_conf.py b/contrib/YouCompleteMe/ycm_extra_conf.py index 65b5b29099..ae5d3d1a36 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -8,7 +8,7 @@ def DirectoryOfThisScript(): def GetDatabase(): - compilation_database_folder = DirectoryOfThisScript() + '/../../build' + compilation_database_folder = DirectoryOfThisScript() + '/../build' if os.path.exists(compilation_database_folder): return ycm_core.CompilationDatabase(compilation_database_folder) return None |