Mercurial > vim
view runtime/compiler/perlcritic.vim @ 31303:d2107f7b2155 v9.0.0985
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Commit: https://github.com/vim/vim/commit/1a173409ae6a39d59ff99cf3d567c25e859f9ecd
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Dec 2 12:28:47 2022 +0000
patch 9.0.0985: when using kitty keyboard protocol function keys may not work
Problem: When using kitty keyboard protocol function keys may not work.
(Kovid Goyal)
Solution: Recognize CSI ending in [ABCDEFHPQRS] also when the termcap
entries are not specified. (closes #11648)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 02 Dec 2022 13:30:04 +0100 |
parents | d1fe80fb35e6 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: perlcritic " Maintainer: vim-perl <vim-perl@googlegroups.com> " Author: Doug Kearns <dougkearns@gmail.com> " Homepage: https://github.com/vim-perl/vim-perl " Bugs/requests: https://github.com/vim-perl/vim-perl/issues " License: Vim License (see :help license) " Last Change: 2021 Oct 20 if exists("current_compiler") finish endif let current_compiler = "perlcritic" if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif let s:cpo_save = &cpo set cpo&vim CompilerSet makeprg=perlcritic\ --nocolor\ --quiet\ --verbose\ \"\\%f:\\%l:\\%c:\\%s:\\%m\\n\" CompilerSet errorformat=%f:%l:%c:%n:%m, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save