diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-10-20 12:31:02 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-20 08:14:30 -0300 |
commit | 20649051dd8245e2dc2ed84047f92d6ec25eca67 (patch) | |
tree | 39677e665e7d8db258656fdd0084cdb8d45b7f75 /contrib/YouCompleteMe/ycm_extra_conf.py | |
parent | d9592fdbd03b925413c9ca26cadc9702aa6c115a (diff) | |
download | rneovim-20649051dd8245e2dc2ed84047f92d6ec25eca67.tar.gz rneovim-20649051dd8245e2dc2ed84047f92d6ec25eca67.tar.bz2 rneovim-20649051dd8245e2dc2ed84047f92d6ec25eca67.zip |
Improve YCM contrib: Improve documentation.
Diffstat (limited to 'contrib/YouCompleteMe/ycm_extra_conf.py')
-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 65b5b29099..ae5d3d1a36 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -8,7 +8,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 |