Mercurial > vim
view runtime/compiler/rhino.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 | d4c7b3e9cd17 |
children | e1df51f68736 |
line wrap: on
line source
" Vim compiler file " Compiler: Rhino Shell (JavaScript in Java) " Maintainer: Doug Kearns <dougkearns@gmail.com> " Last Change: 2019 Jul 10 if exists("current_compiler") finish endif let current_compiler = "rhino" 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=java\ -jar\ lib/rhino-X.X.XX.jar\ -w\ -strict CompilerSet makeprg=rhino CompilerSet errorformat=%-Gjs:\ %.%#Compilation\ produced%.%#, \%Ejs:\ \"%f\"\\,\ line\ %l:\ %m, \%Ejs:\ uncaught\ JavaScript\ runtime\ exception:\ %m, \%Wjs:\ warning:\ \"%f\"\\,\ line\ %l:\ %m, \%Zjs:\ %p^, \%Cjs:\ %.%#, \%-G%.%# let &cpo = s:cpo_save unlet s:cpo_save