From f2e01d7e513067ddb57c75f6e38cdcf434946cf8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Mon, 22 Oct 2018 00:02:58 +0200 Subject: Major refactoring for version 2.0 vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well. --- plugin/snippets.vim | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 plugin/snippets.vim (limited to 'plugin/snippets.vim') diff --git a/plugin/snippets.vim b/plugin/snippets.vim new file mode 100644 index 0000000..dcf265b --- /dev/null +++ b/plugin/snippets.vim @@ -0,0 +1,12 @@ + +augroup ULTISNIPS + if has("python") || has('python3') + let g:UltiSnipsExpandTrigger = ''| " expands the snippet, be careful not to use elsewhere (ycm uses it by default, but it has been deactivated by g:ycm_key_list_select_completion) + let g:UltiSnipsJumpForwardTrigger = ''| + let g:UltiSnipsJumpBackwardTrigger = ''| + + packadd vim-snippets + packadd ultisnips + endif +augroup END + -- cgit v1.2.3