diff options
author | Christian Clason <c.clason@uni-graz.at> | 2025-01-25 15:40:47 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-01-25 16:35:16 +0100 |
commit | e3e1c1e76581e63ea588a553f9b91f36a61d9d51 (patch) | |
tree | fd9c9d1b1f85ccaa0a3abf8b1f5bc043cad4bcd6 | |
parent | d4a65dad23b910ad0e5f44cc1720e8bd82bd749b (diff) | |
download | rneovim-e3e1c1e76581e63ea588a553f9b91f36a61d9d51.tar.gz rneovim-e3e1c1e76581e63ea588a553f9b91f36a61d9d51.tar.bz2 rneovim-e3e1c1e76581e63ea588a553f9b91f36a61d9d51.zip |
vim-patch:509a8d5: runtime(just): fix typo in syntax file
closes: vim/vim#16515
https://github.com/vim/vim/commit/509a8d58f9a8ce00744114c1f21f0d951a559ecd
Co-authored-by: Peter Benjamin <petermbenjamin@gmail.com>
-rw-r--r-- | runtime/syntax/just.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/syntax/just.vim b/runtime/syntax/just.vim index 77423a3c91..79c81d0f9c 100644 --- a/runtime/syntax/just.vim +++ b/runtime/syntax/just.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: Justfile " Maintainer: Peter Benjamin <@pbnj> -" Last Change: 2025 Jan 19 +" Last Change: 2025 Jan 25 " Credits: The original author, Noah Bogart <https://github.com/NoahTheDuke/vim-just/> if exists('b:current_syntax') @@ -402,5 +402,5 @@ hi def link justUserDefinedError Exception hi def link justVariadicPrefix Statement hi def link justVariadicPrefixError Error -let &cpo = s:cpo_sav -unlet s:cpo_sav +let &cpo = s:cpo_save +unlet s:cpo_save |