]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(termdebug): Fix wrong test for balloon feature
authorUbaldo Tiberi <ubaldo.tiberi@google.com>
Wed, 14 Aug 2024 12:41:02 +0000 (14:41 +0200)
committerChristian Brabandt <cb@256bit.org>
Wed, 14 Aug 2024 12:41:02 +0000 (14:41 +0200)
fixes: #15359
closes: #15487

Signed-off-by: Ubaldo Tiberi <ubaldo.tiberi@google.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/pack/dist/opt/termdebug/plugin/termdebug.vim

index 04f82bd504c6e0e29081c8a619b36db0c75a5779..377827e85738bf39a35bb85cb1433d5fe90b6fc5 100644 (file)
@@ -1536,7 +1536,7 @@ def CleanupExpr(passed_expr: string): string
 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