From ec838cb54e136aae4cd0e5b288cd7e33297f2dec Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Tue, 17 Jan 2023 18:00:41 +0530 Subject: [PATCH] fish: functions/gl: Pipe commit view to bat The recent tui changes to neovim cause some display issue after exiting from it. We need to provide the --pager option to bat for not exiting immediately if the output size is smaller than the vertical size of the terminal. See the --pager documentation in man bat. We use less -R instead of the default less -RF. --- fish/.config/fish/functions/gl.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fish/.config/fish/functions/gl.fish b/fish/.config/fish/functions/gl.fish index 6ca8245..0b0a9be 100644 --- a/fish/.config/fish/functions/gl.fish +++ b/fish/.config/fish/functions/gl.fish @@ -12,7 +12,7 @@ function gl --description 'Git browse commits' git log --color=always --format='%C(auto)%h%d %s %C(green)%C(bold)%cr% C(blue)%an' $argv | fzf --exact --no-sort --reverse --tiebreak=index --no-multi --ansi \ --preview="$view_commit" \ --header="ENTER to view, CTRL-Y to copy hash, CTRL-O to open on GitHub, CTRL-X to checkout, CTRL-C to exit, CTRL-S to cherry-pick" \ - --bind "enter:execute:$view_commit_nvim | nvim -R -" \ + --bind "enter:execute:$view_commit_nvim | bat -ldiff --pager 'less -R'" \ --bind "ctrl-y:execute:$copy_commit_hash" \ --bind "ctrl-x:execute:$git_checkout" \ --bind "ctrl-o:execute:$github_open" \