diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-19 16:20:59 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-05-19 16:24:44 +0200 |
commit | c0e70e1fa538dcccdfa465b73c336a7112d29c6e (patch) | |
tree | d1b65b55bb92eb515e63a27b4bfeb7f084412445 | |
parent | 080f5dbd95942dcef47c61349ce69fb42cbafc2a (diff) | |
download | rneovim-c0e70e1fa538dcccdfa465b73c336a7112d29c6e.tar.gz rneovim-c0e70e1fa538dcccdfa465b73c336a7112d29c6e.tar.bz2 rneovim-c0e70e1fa538dcccdfa465b73c336a7112d29c6e.zip |
Introduce vim namespace: Contrib YCM: Fix build dir calculation.
Build directory calculation had not been correctly updated in #716.
-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 9fd2ba8b8d..8c013598cc 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -7,7 +7,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 |