comparison runtime/pack/dist/opt/termdebug/plugin/termdebug.vim @ 17372:b9bc47742df6

Update runtime files commit https://github.com/vim/vim/commit/396e829fa355ebc92a618ef18266a3fed71b7042 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 13 23:04:31 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jul 2019 23:15:05 +0200
parents c002c4899529
children cc953757ed2a
comparison
equal deleted inserted replaced
17371:1062026cb98c 17372:b9bc47742df6
836 836
837 " Show a balloon with information of the variable under the mouse pointer, 837 " Show a balloon with information of the variable under the mouse pointer,
838 " if there is any. 838 " if there is any.
839 func TermDebugBalloonExpr() 839 func TermDebugBalloonExpr()
840 if v:beval_winid != s:sourcewin 840 if v:beval_winid != s:sourcewin
841 return 841 return ''
842 endif 842 endif
843 if !s:stopped 843 if !s:stopped
844 " Only evaluate when stopped, otherwise setting a breakpoint using the 844 " Only evaluate when stopped, otherwise setting a breakpoint using the
845 " mouse triggers a balloon. 845 " mouse triggers a balloon.
846 return 846 return ''
847 endif 847 endif
848 let s:evalFromBalloonExpr = 1 848 let s:evalFromBalloonExpr = 1
849 let s:evalFromBalloonExprResult = '' 849 let s:evalFromBalloonExprResult = ''
850 let s:ignoreEvalError = 1 850 let s:ignoreEvalError = 1
851 call s:SendEval(v:beval_text) 851 call s:SendEval(v:beval_text)