Initial commit.

This commit is contained in:
Michal Skorczak 2025-03-21 13:33:47 +00:00
commit 9b3afdb5e7
2 changed files with 11 additions and 0 deletions

5
autoload/vim-notes.vim Executable file
View 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
View 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()