We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3998133 commit c84f644Copy full SHA for c84f644
.config/fish/conf.d/tide.fish
@@ -174,8 +174,6 @@ set -g tide_zig_icon
174
if string match -q "$TERM_PROGRAM" vscode && status is-login
175
set -gx tide_shlvl_threshold "$SHLVL"
176
end
177
-if command -q tput && status is-interactive
178
- function tide_prompt_at_bottom --on-event fish_prompt --on-variable LINES
179
- tput cup $LINES
180
- end
+status is-interactive && function tide_prompt_at_bottom --on-event fish_prompt --on-variable LINES
+ printf "\e[$LINES;1H" # tput cup $LINES
181
0 commit comments