LanguageClient-neovim: ccls/navigate

Fangrui Song 2018-09-03 16:52:45 -07:00
parent 00c0e9fea8
commit b65f0e6d3c

@ -67,6 +67,15 @@ bear gcc x.c -o x
or any other or any other
### `$ccls/navigate`
```vim
nn <silent> xh :call LanguageClient#findLocations({'method':'$ccls/navigate','direction':'L'})<cr>
nn <silent> xj :call LanguageClient#findLocations({'method':'$ccls/navigate','direction':'D'})<cr>
nn <silent> xk :call LanguageClient#findLocations({'method':'$ccls/navigate','direction':'U'})<cr>
nn <silent> xl :call LanguageClient#findLocations({'method':'$ccls/navigate','direction':'R'})<cr>
```
### Custom cross references ### Custom cross references
```vim ```vim