Mercurial > vim
view runtime/compiler/rhino.vim @ 27303:9e0ac05f579a v8.2.4180
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Commit: https://github.com/vim/vim/commit/5600a709f453045c80f92087acc0f855b4af377a
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 22 15:09:36 2022 +0000
patch 8.2.4180: 'balloonexpr' is evaluated in the current script context
Problem: 'balloonexpr' is evaluated in the current script context.
Solution: Use the script context where the option was set.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 22 Jan 2022 16:15:02 +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