annotate runtime/spell/yi.vim @ 23340:8e0d6f355a5a v8.2.2213

patch 8.2.2213: checking white space around -> is not backwards compatible Commit: https://github.com/vim/vim/commit/7cfcd0c99c485a973d8cbff939531e430ad77f55 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 25 16:11:53 2020 +0100 patch 8.2.2213: checking white space around -> is not backwards compatible Problem: Checking white space around -> is not backwards compatible. Solution: Only check white space around =>.
author Bram Moolenaar <Bram@vim.org>
date Fri, 25 Dec 2020 16:15:03 +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