Skip to content

Commit

Permalink
Update ultisnips and snippets to the latest version
Browse files Browse the repository at this point in the history
Critically, the update to the honza/vim-snippets repo fixes a character
encoding issue that was constantly spamming while using snippets.
Luckily I found the issue on GitHub, it's pretty recent[1], otherwise I
was gearing up to switch to neosnippets, nothing wrong with it, it might
even be better, cool, modern async stuff, but it's not what's in my
muscle memory.

[1]: honza/vim-snippets#1500
  • Loading branch information
sionleroux committed Sep 6, 2024
1 parent abbdb02 commit 0f969c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundle/snippets
2 changes: 1 addition & 1 deletion bundle/ultisnips
Submodule ultisnips updated 78 files
+1 −0 .github/FUNDING.yml
+1 −1 .github/issue_template.md
+39 −0 .github/workflows/main.yml
+0 −30 .travis.yml
+16 −0 CONTRIBUTING.md
+20 −6 Makefile
+3 −2 README.md
+44 −1 autoload/UltiSnips.vim
+7 −1 autoload/UltiSnips/map_keys.vim
+1 −1 autoload/unite/sources/ultisnips.vim
+92 −0 doc/UltiSnips-advanced.txt
+370 −198 doc/UltiSnips.txt
+10 −10 doc/examples/autojump-if-empty/README.md
+56 −0 doc/examples/tabstop-generation/README.md
+ doc/examples/tabstop-generation/demo1.gif
+1 −0 docker/install_packages.sh
+14 −3 docker/run_tests.sh
+22 −1 ftplugin/snippets.vim
+20 −2 plugin/UltiSnips.vim
+1 −1 pythonx/UltiSnips/__init__.py
+3 −2 pythonx/UltiSnips/buffer_proxy.py
+1 −1 pythonx/UltiSnips/compatibility.py
+4 −3 pythonx/UltiSnips/debug.py
+2 −2 pythonx/UltiSnips/diff.py
+51 −24 pythonx/UltiSnips/err_to_scratch_buffer.py
+11 −0 pythonx/UltiSnips/error.py
+1 −1 pythonx/UltiSnips/indent_util.py
+1 −1 pythonx/UltiSnips/position.py
+115 −0 pythonx/UltiSnips/remote_pdb.py
+72 −26 pythonx/UltiSnips/snippet/definition/base.py
+2 −2 pythonx/UltiSnips/snippet/definition/snipmate.py
+1 −1 pythonx/UltiSnips/snippet/definition/ulti_snips.py
+1 −1 pythonx/UltiSnips/snippet/parsing/base.py
+8 −7 pythonx/UltiSnips/snippet/parsing/lexer.py
+1 −1 pythonx/UltiSnips/snippet/parsing/snipmate.py
+3 −3 pythonx/UltiSnips/snippet/parsing/ulti_snips.py
+1 −1 pythonx/UltiSnips/snippet/source/__init__.py
+1 −1 pythonx/UltiSnips/snippet/source/added.py
+2 −1 pythonx/UltiSnips/snippet/source/base.py
+13 −7 pythonx/UltiSnips/snippet/source/file/base.py
+2 −1 pythonx/UltiSnips/snippet/source/file/common.py
+1 −1 pythonx/UltiSnips/snippet/source/file/snipmate.py
+9 −4 pythonx/UltiSnips/snippet/source/file/ulti_snips.py
+4 −1 pythonx/UltiSnips/snippet/source/snippet_dictionary.py
+109 −23 pythonx/UltiSnips/snippet_manager.py
+1 −1 pythonx/UltiSnips/test_diff.py
+1 −1 pythonx/UltiSnips/test_position.py
+1 −1 pythonx/UltiSnips/text.py
+1 −1 pythonx/UltiSnips/text_objects/__init__.py
+1 −1 pythonx/UltiSnips/text_objects/base.py
+18 −10 pythonx/UltiSnips/text_objects/choices.py
+1 −1 pythonx/UltiSnips/text_objects/escaped_char.py
+1 −1 pythonx/UltiSnips/text_objects/mirror.py
+22 −5 pythonx/UltiSnips/text_objects/python_code.py
+1 −1 pythonx/UltiSnips/text_objects/shell_code.py
+26 −11 pythonx/UltiSnips/text_objects/snippet_instance.py
+1 −1 pythonx/UltiSnips/text_objects/tabstop.py
+1 −1 pythonx/UltiSnips/text_objects/transformation.py
+1 −1 pythonx/UltiSnips/text_objects/viml_code.py
+1 −1 pythonx/UltiSnips/text_objects/visual.py
+16 −5 pythonx/UltiSnips/vim_helper.py
+1 −1 pythonx/UltiSnips/vim_state.py
+5 −5 syntax/snippets.vim
+2 −0 test/constant.py
+47 −31 test/test_Autotrigger.py
+0 −2 test/test_Chars.py
+5 −1 test/test_Choices.py
+29 −0 test/test_ContextSnippets.py
+0 −11 test/test_Editing.py
+38 −0 test/test_Expand.py
+43 −0 test/test_Fixes.py
+2 −2 test/test_Interpolation.py
+24 −0 test/test_Mirror.py
+25 −0 test/test_ParseSnippets.py
+24 −0 test/test_SnipMate.py
+18 −25 test/vim_interface.py
+11 −2 test/vim_test_case.py
+53 −10 test_all.py

0 comments on commit 0f969c4

Please sign in to comment.