From 2609aa2aea5c031a6a002cdf393fc4efe2d365ae Mon Sep 17 00:00:00 2001 From: Jan De Dobbeleer Date: Thu, 3 Nov 2022 14:28:54 +0100 Subject: [PATCH] fix(fish): do not hide tooltip on arguments resolves #3037 --- src/shell/scripts/omp.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/scripts/omp.fish b/src/shell/scripts/omp.fish index a850b6ca..02b9a2c2 100644 --- a/src/shell/scripts/omp.fish +++ b/src/shell/scripts/omp.fish @@ -72,7 +72,7 @@ end function _render_tooltip commandline --function expand-abbr - set omp_tooltip_command (commandline --current-buffer | string collect) + set omp_tooltip_command (commandline --current-buffer | string split --allow-empty -f1 ' ') commandline --insert " " commandline --function repaint end