aboutsummaryrefslogtreecommitdiff
path: root/runtime/indent/typescript.vim
diff options
context:
space:
mode:
authorChristian Clason <c.clason@uni-graz.at>2023-08-29 11:03:29 +0200
committerChristian Clason <c.clason@uni-graz.at>2023-08-29 11:32:46 +0200
commitae7ab9015999ba417642a5e0c785709f104d75cf (patch)
tree975cfe9081f3c1efc46430da29ff127414e76ea6 /runtime/indent/typescript.vim
parent0e3ea0a262329ba21bb10c74ea5d689f0597aabd (diff)
downloadrneovim-ae7ab9015999ba417642a5e0c785709f104d75cf.tar.gz
rneovim-ae7ab9015999ba417642a5e0c785709f104d75cf.tar.bz2
rneovim-ae7ab9015999ba417642a5e0c785709f104d75cf.zip
vim-patch:0382f05dbd65
runtime: Set b:undo_indent where missing (vim/vim#12944) https://github.com/vim/vim/commit/0382f05dbd659d8e39ee4e71c1e5062ac5c0a8fd Co-authored-by: dkearns <dougkearns@gmail.com>
Diffstat (limited to 'runtime/indent/typescript.vim')
-rw-r--r--runtime/indent/typescript.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/indent/typescript.vim b/runtime/indent/typescript.vim
index e899f83d0f..e26750b8aa 100644
--- a/runtime/indent/typescript.vim
+++ b/runtime/indent/typescript.vim
@@ -2,6 +2,7 @@
" Language: TypeScript
" Maintainer: See https://github.com/HerringtonDarkholme/yats.vim
" Last Change: 2019 Oct 18
+" 2023 Aug 28 by Vim Project (undo_indent)
" Acknowledgement: Based off of vim-ruby maintained by Nikolai Weibull http://vim-ruby.rubyforge.org
" 0. Initialization {{{1
@@ -20,6 +21,8 @@ setlocal indentexpr=GetTypescriptIndent()
setlocal formatexpr=Fixedgq(v:lnum,v:count)
setlocal indentkeys=0{,0},0),0],0\,,!^F,o,O,e
+let b:undo_indent = "setlocal formatexpr< indentexpr< indentkeys< smartindent<"
+
" Only define the function once.
if exists("*GetTypescriptIndent")
finish