aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-01-17 22:41:55 -0500
committerJustin M. Keyes <justinkz@gmail.com>2016-01-17 22:41:55 -0500
commit5f33f581a75fde1c6422943d705c607c07f50a6b (patch)
treee93a6fa2169c6d5cff5e79151e3589ad1cde85d4
parent92f7dc1c4b4f18fc14771573a3f93ae7300c7d27 (diff)
parent9c2a156faa1f301fa74e0d8909a98a3e842faa6a (diff)
downloadrneovim-5f33f581a75fde1c6422943d705c607c07f50a6b.tar.gz
rneovim-5f33f581a75fde1c6422943d705c607c07f50a6b.tar.bz2
rneovim-5f33f581a75fde1c6422943d705c607c07f50a6b.zip
Merge pull request #4035 from heewa/fix-ycm-path
fix YouCompleteMe db path in config
-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