annotate runtime/ftplugof.vim @ 31198:b4491e73d6d1
v9.0.0933
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Commit: https://github.com/vim/vim/commit/43300f6034fbefb54b5d1dc1b4c72d5fe57438c8
Author: Bram Moolenaar <Bram@vim.org>
Date: Wed Nov 23 23:30:58 2022 +0000
patch 9.0.0933: Kitty shows "already at oldest change" on startup
Problem: Kitty shows "already at oldest change" on startup.
Solution: When receiving the keyboard protocol state return the ignore key.
(closes #11601)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 24 Nov 2022 00:45:03 +0100 |
parents |
179c118424a6 |
children |
4027cefc2aab |
rev |
line source |
27623
|
1 vim9script
|
7
|
2
|
27623
|
3 # Vim support file to switch off loading plugins for file types
|
|
4 #
|
|
5 # Maintainer: Bram Moolenaar <Bram@vim.org>
|
|
6 # Last Change: 2022 Feb 09
|
|
7
|
|
8 if exists("g:did_load_ftplugin")
|
|
9 unlet g:did_load_ftplugin
|
7
|
10 endif
|
|
11
|
27623
|
12 # Remove all autocommands in the filetypeplugin group, if any exist.
|
3139
|
13 if exists("#filetypeplugin")
|
|
14 silent! au! filetypeplugin *
|
|
15 endif
|