MaiLunJiye / ncm-clang

clang completion for nvim-completion-manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Introduction

clang completion integration for nvim-completion-manager

ncm-clang

This plugin only support completion, for go to declaration support, and others, you could try , for example, Rip-Rip/clang_complete

Requirements

  • clang in your $PATH

Installation

Assuming you're using vim-plug

Plug 'roxma/ncm-clang'

Settings

If you're using cmake, add set(CMAKE_EXPORT_COMPILE_COMMANDS, 1) into CMakeLists.txt so that compile_commands.json will be generated.

If your project is not using cmake, store the compile flags into a file named .clang_complete.

g:ncm_clang#database_paths

THe paths for locating compile_commands.json. Default is ['compile_commands.json', 'build/compile_commands.json']

Utilities

ncm_clang#compilation_info()

Get compilation flags and directory for current file.

The following vimrc shows how to use Rip-Rip/clang_complete's goto declaration feature.

    " default key mapping is annoying
    let g:clang_make_default_keymappings = 0
    " ncm-clang is auto detecting compile_commands.json and .clang_complete
    " file
    let g:clang_auto_user_options = ''

    func WrapClangGoTo()
        let cwd = getcwd()
        let info = ncm_clang#compilation_info()
        exec 'cd ' . info['directory']
        try
            let b:clang_user_options = join(info['args'], ' ')
            call g:ClangGotoDeclaration()
        catch
        endtry
        " restore
        exec 'cd ' . cwd
    endfunc

    " map to gd key
    autocmd FileType c,cpp nnoremap <buffer> gd :call WrapClangGoTo()<CR>

The following vimrc shows how to work with w0rp/ale

    let g:ale_linters = {
        \   'cpp': ['clang'],
        \}
    autocmd BufEnter *.cpp,*.h,*.hpp,*.hxx let g:ale_cpp_clang_options = join(ncm_clang#compilation_info()['args'], ' ')

    " (optional, for completion performance) run linters only when I save files
    let g:ale_lint_on_text_changed = 'never'
    let g:ale_lint_on_enter = 0

About

clang completion for nvim-completion-manager


Languages

Language:Python 90.9%Language:Vim Script 9.1%