We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3998133 commit 6c5d1e4Copy full SHA for 6c5d1e4
.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[3J\e[$LINES;1H" # tput cup $LINES
181
0 commit comments