KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
neo-rtags
★ 12
Open GitHub ↗
Rtags client for neovim
Download README (.md)
Explore Similar Repositories
crd-validation
:
Generator for crd validation openapi
mutsneedle
:
R package for viewing mutation needle lollipop plot widgets
pg_channels
:
Python wrapper for PostgreSQL NOTIFY and LISTEN commands.
mkdocs-jinja2
:
No description available.
HDLObf
:
HDL Obfuscator
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
neo-rtags
?
Download (.md)
# neo-rtags [Rtags](https://github.com/Andersbakken/rtags) client for [Neovim](https://github.com/neovim/neovim). The client is a clone of [vim-rtags](https://github.com/lyuts/vim-rtags), it's 100% written in Python3 and uses [Python client](https://github.com/neovim/python-client) for Neovim. ## Installation ### Dein Add following line to your ```~/.config/nvim/init.vim``` file: ``` call dein#add('marxin/neo-rtags') ``` and then run in neovim: ``` :call dein#install() ``` ## Mapping | Mapping | Function name | rc command flags | Description | |-|-|-|-| | <Leader>ri | NeoRtagsSymbolInfo | -U | Symbol information | | <Leader>rc | NeoRtagsFindSubclasses | --class-hierarchy | Find subclasses | | <Leader>rC | NeoRtagsFindSuperclasses | --class-hierarchy | Find superclasses| | <Leader>rd | NeoRtagsDiagnose | --diagnose --synchronous-diagnostics | Show diagnostics results in a quickfix window | | <Leader>rj | NeoRtagsFollowLocation | -f | Follow location | | <Leader>rl | NeoRtagsListProjects | -w | List projects and select a project | | <Leader>rf | NeoRtagsFindReferences | -r -e | Find all references | | <Leader>rn | NeoRtagsFindReferencesByName | -a -R -e | Find all references by a name | | <Leader>rv | NeoRtagsFindVirtuals| -r -k | Find virtuals | | <Leader>rp | NeoRtagsJumpToParent | -U --symbol-info-include-parents | Jump to parent | | <Leader>rw | NeoRtagsRenameSymbol| -r -e --rename | Rename symbol under cursor | ## Code Completion The plugin registers ```NeoRtagsCompleteFunction``` as ```completefunc``` (i.e. CTRL-X CTRL-U). If the function is already set, neo-rtags code completion is not set. ## Configuration | Variable | Description | |-|-| | let g:neortagsAlwaysRename = 1 | Always rename symbol and do not ask for confirmation | ## Troubleshooting The plugin is work in progress. I welcome any requests for new functionality, configuration and also for seen issue. Please file an issue or write me an email.