commit 9b3afdb5e7f007cba3bdd2bc59490370d931b69b Author: Michal Skorczak Date: Fri Mar 21 13:33:47 2025 +0000 Initial commit. diff --git a/autoload/vim-notes.vim b/autoload/vim-notes.vim new file mode 100755 index 0000000..bd3a5b3 --- /dev/null +++ b/autoload/vim-notes.vim @@ -0,0 +1,5 @@ +# https://www.linode.com/docs/guides/writing-a-vim-plugin/ +function! vimworkspaces#TestCommand(...) + echo "YEAH ITS WORKING" +endfunction + diff --git a/plugin/vim-notes.vim b/plugin/vim-notes.vim new file mode 100755 index 0000000..43cf838 --- /dev/null +++ b/plugin/vim-notes.vim @@ -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()