diff options
| author | Robert Günzler <r@gnzler.io> | 2021-11-02 17:30:24 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2021-11-02 19:06:47 +0100 |
| commit | 15a7ac4890dea48be140350c295d4d9ea05292ee (patch) | |
| tree | e0405ddaa98fa30ec336d2504a244e52b4910524 /.vim/autoload/snips.vim | |
| parent | 3768a6c1488c148cc07481687a47cb7cce02ad35 (diff) | |
vim: switch from ultisnips+snippets.nvim to snippy
Diffstat (limited to '.vim/autoload/snips.vim')
| -rw-r--r-- | .vim/autoload/snips.vim | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.vim/autoload/snips.vim b/.vim/autoload/snips.vim new file mode 100644 index 0000000..3136c2a --- /dev/null +++ b/.vim/autoload/snips.vim @@ -0,0 +1,8 @@ + +function snips#exec(arg) + return luaeval("require('snips').exec")(a:arg) +endfunction + +function snips#comment(arg) + return luaeval("require('snips').comment")(a:arg) +endfunction |