0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

runtime(termdebug): Fix wrong test for balloon feature

fixes: #15359
closes: #15487

Signed-off-by: Ubaldo Tiberi <ubaldo.tiberi@google.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Ubaldo Tiberi
2024-08-14 14:41:02 +02:00
committed by Christian Brabandt
parent ff1680722d
commit bbeb38db4e

View 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