annotate runtime/spell/yi.vim @ 15953:f5620f490af2 v8.1.0982

patch 8.1.0982: update_cursor() called twice in :shell commit https://github.com/vim/vim/commit/32033d23975dbe674f98e1ac5a9a644002faaa3e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 25 06:28:57 2019 +0100 patch 8.1.0982: update_cursor() called twice in :shell Problem: update_cursor() called twice in :shell. Solution: Remove one of the calls. (Yasuhiro Matsumoto, closes https://github.com/vim/vim/issues/4039)
author Bram Moolenaar <Bram@vim.org>
date Mon, 25 Feb 2019 06:30:09 +0100
parents f88526ade026
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
486
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
1 " For Yiddish capitals should not be checked. But only change the
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
2 " 'spellcapcheck' option when it is not at its default value.
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
3 let s:spc = &l:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
4 setlocal spc&
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
5 if s:spc == &l:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
6 setlocal spc=
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
7 else
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
8 let &l:spc = s:spc
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
9 endif
f88526ade026 updated for version 7.0133
vimboss
parents:
diff changeset
10 unlet s:spc