diff options
author | Christian Clason <c.clason@uni-graz.at> | 2022-05-10 10:55:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 10:55:33 +0200 |
commit | e50b1fe60d87cbe7798ce921f08ea38a4750fa99 (patch) | |
tree | 7f6d742ad5fa4e3f40f4978189f6ce55dad2c8f9 /runtime/ftplugin | |
parent | 5359be78935dc639c481d74f010fe133dd40290c (diff) | |
download | rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.tar.gz rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.tar.bz2 rneovim-e50b1fe60d87cbe7798ce921f08ea38a4750fa99.zip |
vim-patch:921bde888046 (#18511)
Update runtime files, translations
https://github.com/vim/vim/commit/921bde88804663a7cb825d7f7e8a5d8ae6b58650
skip: translations
skip: builtin.txt (requires 8.2.4861)
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r-- | runtime/ftplugin/abaqus.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/ftplugin/abaqus.vim b/runtime/ftplugin/abaqus.vim index b263d0c318..5ce565ef3f 100644 --- a/runtime/ftplugin/abaqus.vim +++ b/runtime/ftplugin/abaqus.vim @@ -1,7 +1,7 @@ " Vim filetype plugin file " Language: Abaqus finite element input file (www.abaqus.com) " Maintainer: Carl Osterwisch <osterwischc@asme.org> -" Last Change: 2012 Apr 30 +" Last Change: 2022 May 09 " Only do this when not done yet for this buffer if exists("b:did_ftplugin") | finish | endif @@ -86,11 +86,11 @@ let b:undo_ftplugin .= "|unmap <buffer> [[|unmap <buffer> ]]" \ . "|unmap <buffer> <LocalLeader><LocalLeader>" " Undo must be done in nocompatible mode for <LocalLeader>. -let b:undo_ftplugin = "let s:cpo_save = &cpoptions|" +let b:undo_ftplugin = "let b:cpo_save = &cpoptions|" \ . "set cpoptions&vim|" \ . b:undo_ftplugin - \ . "|let &cpoptions = s:cpo_save" - \ . "|unlet s:cpo_save" + \ . "|let &cpoptions = b:cpo_save" + \ . "|unlet b:cpo_save" " Restore saved compatibility options let &cpoptions = s:cpo_save |