aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/tilde.vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2022-04-27 17:48:35 +0200
committerGitHub <noreply@github.com>2022-04-27 17:48:35 +0200
commit521e91e1c420bd5c94c35908181dbba81e58dd0f (patch)
treeeaa4be5323cc89048f71f4a61539d24c0647ca9e /runtime/indent/tilde.vim
parentee85d8d7566042df0b988ae28bbbaa7a16bbb5a9 (diff)
downloadrneovim-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.vim5
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