Initial commit.
This commit is contained in:
commit
9b3afdb5e7
2 changed files with 11 additions and 0 deletions
5
autoload/vim-notes.vim
Executable file
5
autoload/vim-notes.vim
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
# https://www.linode.com/docs/guides/writing-a-vim-plugin/
|
||||||
|
function! vimworkspaces#TestCommand(...)
|
||||||
|
echo "YEAH ITS WORKING"
|
||||||
|
endfunction
|
||||||
|
|
6
plugin/vim-notes.vim
Executable file
6
plugin/vim-notes.vim
Executable file
|
@ -0,0 +1,6 @@
|
||||||
|
if exists("g:loaded_vim_notes")
|
||||||
|
finish
|
||||||
|
endif
|
||||||
|
let g:loaded_vim_notes = 1
|
||||||
|
|
||||||
|
command! -nargs=0 TestCommand call vim_notes#TestCommand()
|
Loading…
Reference in a new issue