diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-04-27 17:48:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 17:48:35 +0200 |
commit | 521e91e1c420bd5c94c35908181dbba81e58dd0f (patch) | |
tree | eaa4be5323cc89048f71f4a61539d24c0647ca9e /runtime/indent/tilde.vim | |
parent | ee85d8d7566042df0b988ae28bbbaa7a16bbb5a9 (diff) | |
download | rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.gz rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.tar.bz2 rneovim-521e91e1c420bd5c94c35908181dbba81e58dd0f.zip |
vim-patch:ce001a337e28 (#18287)
Update runtime files
https://github.com/vim/vim/commit/ce001a337e28fa368f40ac6422835d730fb8ebb1
also add `vimStdPlugin` keywords missing from previous updates
Diffstat (limited to 'runtime/indent/tilde.vim')
-rw-r--r-- | runtime/indent/tilde.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/indent/tilde.vim b/runtime/indent/tilde.vim index e722a0994c..8658035f72 100644 --- a/runtime/indent/tilde.vim +++ b/runtime/indent/tilde.vim @@ -1,7 +1,8 @@ "Description: Indent scheme for the tilde weblanguage -"Author: Tobias Rundström <tobi@tobi.nu> +"Author: Tobias Rundström <tobi@tobi.nu> (Invalid email address) "URL: http://tilde.tildesoftware.net "Last Change: May 8 09:15:09 CEST 2002 +" 2022 April: b:undo_indent added by Doug Kearns if exists ("b:did_indent") finish @@ -13,6 +14,8 @@ setlocal autoindent setlocal indentexpr=GetTildeIndent(v:lnum) setlocal indentkeys=o,O,) +let b:undo_indent = "setl ai< inde< indk<" + if exists("*GetTildeIndent") finish endif |