Vim support for nim.
Find a file
2016-02-17 09:50:45 +02:00
autoload Fix a few errors 2016-02-13 14:11:40 +02:00
doc Added base of doc 2016-01-30 15:52:16 +02:00
ftdetect Temp 2016-02-10 22:19:23 +02:00
ftplugin Temp 2016-02-10 22:19:23 +02:00
indent Temp 2016-02-10 22:19:23 +02:00
other Temp 2016-02-10 22:19:23 +02:00
plugin Better highlighting 2016-02-17 01:07:13 +02:00
syntax Added pragma highlighting support 2016-02-17 09:50:45 +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 Async fixes 2016-02-10 08:46:09 +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
    • Semantic highlighting for specified nim symbol kinds
  • Indentation
  • Error checking
    • Using :make
    • Neomake
  • Project navigation with nimsuggest
    • Jump to definition
    • Get symbol information (type, module, file, signature, etc...)
    • Find usages (file and/or project)
  • Autocompletion
    • Nimsuggest omnicompletion
    • Autocomplete module names
  • IDE like stuff
    • Outline listing all symbols in the module (like tagbar)
    • Jump to documentation in web
    • Refactoring
      • Rename symbol in file or project
  • REPL
    • Open repl
    • Send current buffer
    • Send selection

something

Planned features

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