Skip to content

TysonAndre/LanguageClient-neovim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LanguageClient-neovim

Build Status

Language Server Protocol support for neovim.

rename

More recordings at https://github.com/autozimu/images/tree/master/LanguageClient-neovim.

Features

(Note: Most of the functionality are provided by language servers. Specific language servers may implement only a subset of the features, see http://langserver.org, in which case, featured listed above may not fully functional.)

Quick Start

Using vim-plug:

Plug 'autozimu/LanguageClient-neovim', { 'do': ':UpdateRemotePlugins' } " (Optional) Multi-entry selection UI. Plug 'junegunn/fzf' " (Optional) Multi-entry selection UI. Plug 'Shougo/denite.nvim' " (Optional) Completion integration with deoplete. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } " (Optional) Completion integration with nvim-completion-manager. Plug 'roxma/nvim-completion-manager' " (Optional) Showing function signature and inline doc. Plug 'Shougo/echodoc.vim'

Example configuration

" Required for operations modifying multiple buffers like rename. set hidden let g:LanguageClient_serverCommands = { \ 'rust': ['cargo', 'run', '--release', '--manifest-path=/opt/rls/Cargo.toml'], \ } nnoremap <silent> K :call LanguageClient_textDocument_hover()<CR> nnoremap <silent> gd :call LanguageClient_textDocument_definition()<CR> nnoremap <silent> <F2> :call LanguageClient_textDocument_rename()<CR>

Run command LanguageClientStart inside neovim to get start.

Language Servers

Please see http://langserver.org.

Documentation

LanguageClient.txt

About

Language Server Protocol support for neovim.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.8%
  • Shell 1.7%
  • Vim Script 1.7%
  • Other 0.8%