Mercurial > vim
view runtime/compiler/rhino.vim @ 22448:5e287462487e v8.2.1772
patch 8.2.1772: cannot use CTRL-W <Down> to move out of a terminal window
Commit: https://github.com/vim/vim/commit/f43e7ac4eee22dbb26fc069ec9a3d1598ec8dfe9
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 29 21:23:25 2020 +0200
patch 8.2.1772: cannot use CTRL-W <Down> to move out of a terminal window
Problem: Cannot use CTRL-W <Down> to move out of a terminal window.
Solution: Use special_to_buf() instead of mb_char2bytes(). (closes https://github.com/vim/vim/issues/7045)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 29 Sep 2020 21:30:03 +0200 |
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