Vim support for nim.
Find a file
baabelfish 4e5bb86065 Better documentation
- Closes #18
- Closes #17
- Closes #16
2016-03-03 22:54:50 +02:00
autoload Saner autocomplete 2016-02-25 19:27:45 +02:00
doc Better documentation 2016-03-03 22:54:50 +02:00
ftdetect WIP 2016-02-22 11:12:53 +02:00
ftplugin Better documentation 2016-03-03 22:54:50 +02:00
indent Temp 2016-02-10 22:19:23 +02:00
other Temp 2016-02-10 22:19:23 +02:00
plugin Better documentation 2016-03-03 22:54:50 +02:00
syntax WIP 2016-02-22 11:12:53 +02:00
.gitignore Better sematic highlighter 2016-02-03 21:28:20 +02:00
.travis.yml Travis testing 2016-02-07 23:50:18 +02:00
LICENSE Initial commit 2016-01-27 10:59:11 +02:00
README.md Update outline and readme 2016-03-03 22:02:19 +02:00

nvim-nim Build Status

Nim support for vim and advanced support for neovim. Still in heavy development.

Features

  • Asynchronous
  • Syntax highlighting
    • Normal vim highlight
    • More intelligent highlight with nimsuggest (experimental)
    • Semantic highlighting for specified nim symbol kinds (experimental)
  • Indentation
  • Error checking
  • Project navigation with nimsuggest
    • Jump to definition
    • Get symbol information (type, module, file, signature, etc...)
    • Find usages (file and/or project)
  • Autocompletion
    • Nimsuggest omnicompletion (still sync, deoplete/ycm incoming...)
    • Autocomplete module names (experimental)
  • IDE like stuff
    • Jump to documentation in web
    • Refactoring
      • Rename symbol in file or project
    • Outline listing all symbols in the module (like tagbar)
      • Jump to outline symbol with unite (experimental)
  • REPL (experimental)
    • Open repl
    • Send current buffer
    • Send selection

something

Planned features

  • Debugger support
  • Async autocomplete with deoplete (maybe a seperate plugin)