Refactor everything to smaller libs
+ autoload
This commit is contained in:
parent
21eb07d075
commit
a8812f5f18
13 changed files with 382 additions and 323 deletions
15
autoload/features/debug.vim
Normal file
15
autoload/features/debug.vim
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
if exists("s:loaded")
|
||||
finish
|
||||
endif
|
||||
let s:loaded = 1
|
||||
|
||||
|
||||
function! features#debug#run()
|
||||
echo "Nim tools debugging info"
|
||||
echo "------------------------"
|
||||
echo "\n"
|
||||
echo "-------- Tools ---------"
|
||||
echo "Nim: " . g:nvim_nim_exec_nim
|
||||
echo "Nimble: " . g:nvim_nim_exec_nimble
|
||||
echo "Nimsuggest: " . g:nvim_nim_exec_nimsuggest
|
||||
endfunction
|
||||
Loading…
Add table
Add a link
Reference in a new issue