Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more special commands for fixing extra lines #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions conf.d/gills.fish
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Unless we’re clearing the screen, add a line before the prompt.
function add_empty_line_before_prompt --on-event fish_postexec
if not string match -r -q 'clear.*' $argv
if not string match -r -q 'clear.*|reset.*' $argv
printf '\n'
end
end
Expand All @@ -9,7 +9,7 @@ end
# leave an empty space before the command to better
# delinate the command output from the command itself.
function add_empty_line_before_command --on-event fish_preexec
if not string match -r -q 'cd.*|popd.*|pushd.*' $argv
if not string match -r -q 'cd.*|popd.*|pushd.*|prevd.*|nextd.*' $argv
printf '\n'
end
end