diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-01-17 22:41:55 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-01-17 22:41:55 -0500 |
commit | 5f33f581a75fde1c6422943d705c607c07f50a6b (patch) | |
tree | e93a6fa2169c6d5cff5e79151e3589ad1cde85d4 | |
parent | 92f7dc1c4b4f18fc14771573a3f93ae7300c7d27 (diff) | |
parent | 9c2a156faa1f301fa74e0d8909a98a3e842faa6a (diff) | |
download | rneovim-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.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 |