summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorMarc Sven Schulte <167623652+msschulte@users.noreply.github.com>2024-04-28 21:43:03 +0200
committerGitHub <noreply@github.com>2024-04-28 21:43:03 +0200
commit2e9b9e9a9ebf3fd40437260ecd6b1e23b02c636b (patch)
tree1f8e7ff4f5fd7329c6a64250f84fed0b63a6cefe /runtime
parent32d701f51b1ed2834071a2c5031a300936beda13 (diff)
runtime(asm): missing setlocal in indent plugin (#14658)
Signed-off-by: Marc Sven Schulte <167623652+msschulte@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/indent/asm.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/indent/asm.vim b/runtime/indent/asm.vim
index 4efa766d4d..054612b9d6 100644
--- 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)