aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeewa Barfchin <heewa.b@gmail.com>2016-01-17 20:42:16 -0500
committerHeewa Barfchin <heewa.b@gmail.com>2016-01-17 20:50:10 -0500
commit9c2a156faa1f301fa74e0d8909a98a3e842faa6a (patch)
tree611bd08b9cdc8b91fc1f952e6e98c413928465f6
parentd1aa54973569daf49f16020248bbade17f8ae369 (diff)
downloadrneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.tar.gz
rneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.tar.bz2
rneovim-9c2a156faa1f301fa74e0d8909a98a3e842faa6a.zip
Improve YCM contrib: Fix db path
-rw-r--r--contrib/YouCompleteMe/ycm_extra_conf.py2
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