commit 05be00a2d172b390a2c49828eb8933492cc8345a
parent a26c114577b2cbd91d2fa055cf37eea10579e6a3
Author: Christian Clason <c.clason@uni-graz.at>
Date: Sun, 28 Apr 2024 22:59:13 +0200
vim-patch:2e9b9e9a9ebf
runtime(asm): missing setlocal in indent plugin (vim/vim#14658)
https://github.com/vim/vim/commit/2e9b9e9a9ebf3fd40437260ecd6b1e23b02c636b
Co-authored-by: Marc Sven Schulte <167623652+msschulte@users.noreply.github.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/runtime/indent/asm.vim b/runtime/indent/asm.vim
@@ -13,7 +13,7 @@ let b:did_indent = 1
setlocal indentexpr=s:getAsmIndent()
setlocal indentkeys=<:>,!^F,o,O
-let b:undo_indent = "indentexpr< indentkeys<"
+let b:undo_indent = "setlocal indentexpr< indentkeys<"
function! s:getAsmIndent()
let line = getline(v:lnum)