diff options
author | Heewa Barfchin <heewa.b@gmail.com> | 2016-01-17 20:42:16 -0500 |
---|---|---|
committer | Heewa Barfchin <heewa.b@gmail.com> | 2016-01-17 20:50:10 -0500 |
commit | 9c2a156faa1f301fa74e0d8909a98a3e842faa6a (patch) | |
tree | 611bd08b9cdc8b91fc1f952e6e98c413928465f6 | |
parent | d1aa54973569daf49f16020248bbade17f8ae369 (diff) | |
download | rneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.tar.gz rneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.tar.bz2 rneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.zip |
Improve YCM contrib: Fix db path
-rw-r--r-- | contrib/YouCompleteMe/ycm_extra_conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/YouCompleteMe/ycm_extra_conf.py b/contrib/YouCompleteMe/ycm_extra_conf.py index 12ad080143..7c54677c8f 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -9,7 +9,7 @@ def DirectoryOfThisScript(): def GetDatabase(): compilation_database_folder = os.path.join(DirectoryOfThisScript(), - '..', '..', 'build') + '..', 'build') if os.path.exists(compilation_database_folder): return ycm_core.CompilationDatabase(compilation_database_folder) return None |