annotate runtime/plugin/spellfile.vim @ 20559:533bbd1917be v8.2.0833

patch 8.2.0833: mapping <C-bslash> doesn't work in the GUI Commit: https://github.com/vim/vim/commit/ca5bc746073b6fd4b7651bc02f7a18b1b43bd4ca Author: Bram Moolenaar <Bram@vim.org> Date: Wed May 27 22:08:34 2020 +0200 patch 8.2.0833: mapping <C-bslash> doesn't work in the GUI Problem: Mapping <C-bslash> doesn't work in the GUI. Solution: Reset seenModifyOtherKeys when starting the GUI. (closes https://github.com/vim/vim/issues/6150)
author Bram Moolenaar <Bram@vim.org>
date Wed, 27 May 2020 22:15:04 +0200
parents 8157079cea85
children 4027cefc2aab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
649
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
1 " Vim plugin for downloading spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
3 " Last Change: 2006 Feb 01
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
4
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
5 " Exit quickly when:
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
6 " - this plugin was already loaded
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
7 " - when 'compatible' is set
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
8 " - some autocommands are already taking care of spell files
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
9 if exists("loaded_spellfile_plugin") || &cp || exists("#SpellFileMissing")
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
10 finish
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
11 endif
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
12 let loaded_spellfile_plugin = 1
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
13
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
14 " The function is in the autoload directory.
8157079cea85 updated for version 7.0191
vimboss
parents:
diff changeset
15 autocmd SpellFileMissing * call spellfile#LoadFile(expand('<amatch>'))