diff options
author | Christian Clason <c.clason@uni-graz.at> | 2021-11-17 10:02:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 10:02:59 +0100 |
commit | c0efe49e78eca3a17a5934cc283199122d081467 (patch) | |
tree | 8ef8f9fcfb55d3a3d515853e84294f60c6632306 /runtime/syntax/autoit.vim | |
parent | eba317d7a907a76e6e265c0fe0b97a87f17cf943 (diff) | |
download | rneovim-c0efe49e78eca3a17a5934cc283199122d081467.tar.gz rneovim-c0efe49e78eca3a17a5934cc283199122d081467.tar.bz2 rneovim-c0efe49e78eca3a17a5934cc283199122d081467.zip |
vim-patch:519cc559b08b (#16340)
Update runtime files
https://github.com/vim/vim/commit/519cc559b08b800edc429688aece7ad6a00d41eb
Diffstat (limited to 'runtime/syntax/autoit.vim')
-rw-r--r-- | runtime/syntax/autoit.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/autoit.vim b/runtime/syntax/autoit.vim index 1b9ab7458e..6b6048aadc 100644 --- a/runtime/syntax/autoit.vim +++ b/runtime/syntax/autoit.vim @@ -5,6 +5,7 @@ " Authored By: Riccardo Casini <ric@libero.it> " Script URL: http://www.vim.org/scripts/script.php?script_id=1239 " ChangeLog: Please visit the script URL for detailed change information +" Included change from #970. " Quit when a syntax file was already loaded. if exists("b:current_syntax") @@ -932,7 +933,7 @@ syn match autoitConst "\$SD_POWERDOWN" " constants - string syn match autoitConst "\$STR_NOCASESENSE" syn match autoitConst "\$STR_CASESENSE" -syn match autoitConst "\STR_STRIPLEADING" +syn match autoitConst "\$STR_STRIPLEADING" syn match autoitConst "\$STR_STRIPTRAILING" syn match autoitConst "\$STR_STRIPSPACES" syn match autoitConst "\$STR_STRIPALL" |