changeset 35954:a8a5cc92a353

runtime(termdebug): Fix wrong test for balloon feature Commit: https://github.com/vim/vim/commit/bbeb38db4eff4e7be2cd5fef632c80612f234bb8 Author: Ubaldo Tiberi <ubaldo.tiberi@google.com> Date: Wed Aug 14 14:41:02 2024 +0200 runtime(termdebug): Fix wrong test for balloon feature fixes: https://github.com/vim/vim/issues/15359 closes: https://github.com/vim/vim/issues/15487 Signed-off-by: Ubaldo Tiberi <ubaldo.tiberi@google.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 14 Aug 2024 14:45:09 +0200
parents 92d4bb6ad199
children bbe38557f34b
files runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
+++ b/runtime/pack/dist/opt/termdebug/plugin/termdebug.vim
@@ -1536,7 +1536,7 @@ def CleanupExpr(passed_expr: string): st
 enddef
 
 def Balloon_show(expr: string)
-  if has("+balloon_eval") || has("+balloon_eval_term")
+  if has("balloon_eval") || has("balloon_eval_term")
     balloon_show(expr)
   endif
 enddef