comparison runtime/ftplugin/asm.vim @ 33051:02939ae3aaca

runtime: Set b:undo_ftplugin where missing (#12943) Commit: https://github.com/vim/vim/commit/f937ab32a1ac3a560f217ca4ce8305ab2d5b0b74 Author: dkearns <dougkearns@gmail.com> Date: Tue Aug 29 05:32:27 2023 +1000 runtime: Set b:undo_ftplugin where missing (https://github.com/vim/vim/issues/12943) Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 28 Aug 2023 21:45:06 +0200
parents 661eb972cb22
children 900719093984
comparison
equal deleted inserted replaced
33050:6a839ee3ab4b 33051:02939ae3aaca
1 " Vim filetype plugin file 1 " Vim filetype plugin file
2 " Language: asm 2 " Language: asm
3 " Maintainer: Colin Caine <cmcaine at the common googlemail domain> 3 " Maintainer: Colin Caine <cmcaine at the common googlemail domain>
4 " Last Changed: 23 May 2020 4 " Last Change: 23 May 2020
5 " 2023 Aug 28 by Vim Project (undo_ftplugin)
5 6
6 if exists("b:did_ftplugin") | finish | endif 7 if exists("b:did_ftplugin") | finish | endif
8 let b:did_ftplugin = 1
7 9
8 setl comments=:;,s1:/*,mb:*,ex:*/,:// 10 setl comments=:;,s1:/*,mb:*,ex:*/,://
9 setl commentstring=;%s 11 setl commentstring=;%s
10 12
11 let b:did_ftplugin = 1 13 let b:undo_ftplugin = "setl commentstring< comments<"