mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
contrib/ycm_extra_conf.py (#6257)
- Remove some unnecessary code: IsHeaderFile is no longer required, as the logic to find flags to headers is now built into YCM - Add function to make paths in flags absolute: It seems YCM is not correctly resolving paths in flags to consider `build` as the compiler working directory. - Update documentation.
This commit is contained in:
parent
fd27d5a70f
commit
6493ffac1f
@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
## What is this?
|
## What is this?
|
||||||
|
|
||||||
This provides the code necessary to configure vim's YCM plugin to provide C semantic support (completion, go-to-definition, etc) for developers working on the Neovim project.
|
This provides the code necessary to configure vim's YCM plugin to provide C
|
||||||
|
semantic support (completion, go-to-definition, etc) for developers working on
|
||||||
|
the Neovim project.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
@ -13,10 +15,17 @@ Install [YouCompleteMe](https://github.com/Valloric/YouCompleteMe).
|
|||||||
### Step 2
|
### Step 2
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cp contrib/YouCompleteMe/ycm_extra_conf.py src/.ycm_extra_conf.py
|
cp contrib/YouCompleteMe/ycm_extra_conf.py .ycm_extra_conf.py
|
||||||
echo .ycm_extra_conf.py >> .git/info/exclude
|
echo .ycm_extra_conf.py >> .git/info/exclude
|
||||||
make
|
make
|
||||||
|
|
||||||
(Add the following somewhere in your vimrc)
|
|
||||||
autocmd FileType c nnoremap <buffer> <silent> <C-]> :YcmCompleter GoTo<cr>
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Tip: to improve source code navigation, add something like this to your nvim
|
||||||
|
configuration:
|
||||||
|
|
||||||
|
```vim
|
||||||
|
au FileType c,cpp nnoremap <buffer> <c-]> :YcmCompleter GoTo<CR>
|
||||||
|
```
|
||||||
|
|
||||||
|
And use `ctrl+]` when the cursor is positioned in a symbol to quickly jump to a
|
||||||
|
definition or declaration.
|
||||||
|
@ -9,47 +9,57 @@ def DirectoryOfThisScript():
|
|||||||
|
|
||||||
def GetDatabase():
|
def GetDatabase():
|
||||||
compilation_database_folder = os.path.join(DirectoryOfThisScript(),
|
compilation_database_folder = os.path.join(DirectoryOfThisScript(),
|
||||||
'..', 'build')
|
'build')
|
||||||
if os.path.exists(compilation_database_folder):
|
if os.path.exists(compilation_database_folder):
|
||||||
return ycm_core.CompilationDatabase(compilation_database_folder)
|
return ycm_core.CompilationDatabase(compilation_database_folder)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
def IsHeaderFile(filename):
|
|
||||||
extension = os.path.splitext(filename)[1]
|
|
||||||
return extension == '.h'
|
|
||||||
|
|
||||||
|
|
||||||
def GetCompilationInfoForFile(filename):
|
def GetCompilationInfoForFile(filename):
|
||||||
database = GetDatabase()
|
database = GetDatabase()
|
||||||
if not database:
|
if not database:
|
||||||
return None
|
return None
|
||||||
if IsHeaderFile(filename):
|
|
||||||
basename = os.path.splitext(filename)[0]
|
|
||||||
c_file = basename + '.c'
|
|
||||||
# for pure headers (no c file), default to main.c
|
|
||||||
if not os.path.exists(c_file):
|
|
||||||
c_file = os.path.join(DirectoryOfThisScript(), 'nvim', 'main.c')
|
|
||||||
if os.path.exists(c_file):
|
|
||||||
compilation_info = database.GetCompilationInfoForFile(c_file)
|
|
||||||
if compilation_info.compiler_flags_:
|
|
||||||
return compilation_info
|
|
||||||
return None
|
|
||||||
return database.GetCompilationInfoForFile(filename)
|
return database.GetCompilationInfoForFile(filename)
|
||||||
|
|
||||||
|
|
||||||
|
# It seems YCM does not resolve directories correctly. This function will
|
||||||
|
# adjust paths in the compiler flags to be absolute
|
||||||
|
def FixDirectories(args, compiler_working_dir):
|
||||||
|
def adjust_path(path):
|
||||||
|
return os.path.abspath(os.path.join(compiler_working_dir, path))
|
||||||
|
|
||||||
|
adjust_next_arg = False
|
||||||
|
new_args = []
|
||||||
|
for arg in args:
|
||||||
|
if adjust_next_arg:
|
||||||
|
arg = adjust_path(arg)
|
||||||
|
adjust_next_arg = False
|
||||||
|
else:
|
||||||
|
for dir_flag in ['-I', '-isystem', '-o', '-c']:
|
||||||
|
if arg.startswith(dir_flag):
|
||||||
|
if arg != dir_flag:
|
||||||
|
# flag and path are concatenated in same arg
|
||||||
|
path = arg[len(dir_flag):]
|
||||||
|
new_path = adjust_path(path)
|
||||||
|
arg = '{0}{1}'.format(dir_flag, new_path)
|
||||||
|
else:
|
||||||
|
# path is specified in next argument
|
||||||
|
adjust_next_arg = True
|
||||||
|
new_args.append(arg)
|
||||||
|
return new_args
|
||||||
|
|
||||||
|
|
||||||
def FlagsForFile(filename):
|
def FlagsForFile(filename):
|
||||||
compilation_info = GetCompilationInfoForFile(filename)
|
compilation_info = GetCompilationInfoForFile(filename)
|
||||||
if not compilation_info:
|
if not compilation_info:
|
||||||
return None
|
return None
|
||||||
# Add flags not needed for clang-the-binary,
|
# Add flags not needed for clang-the-binary,
|
||||||
# but needed for libclang-the-library (YCM uses this last one).
|
# but needed for libclang-the-library (YCM uses this last one).
|
||||||
flags = (list(compilation_info.compiler_flags_)
|
flags = FixDirectories((list(compilation_info.compiler_flags_)
|
||||||
if compilation_info.compiler_flags_
|
if compilation_info.compiler_flags_
|
||||||
else [])
|
else []), compilation_info.compiler_working_dir_)
|
||||||
extra_flags = ['-Wno-newline-eof']
|
extra_flags = ['-Wno-newline-eof']
|
||||||
final_flags = flags + extra_flags
|
|
||||||
return {
|
return {
|
||||||
'flags': final_flags,
|
'flags': flags + extra_flags,
|
||||||
'do_cache': True
|
'do_cache': True
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user