random-scripts/kitty-scrollback-neovim.sh

25 lines
876 B
Bash
Raw Permalink Normal View History

2023-05-07 22:56:36 -07:00
#!/usr/bin/env bash
set -eu
if [ "$#" -eq 3 ]; then
INPUT_LINE_NUMBER=${1:-0}
CURSOR_LINE=${2:-1}
CURSOR_COLUMN=${3:-1}
AUTOCMD_TERMCLOSE_CMD="call cursor(max([0,${INPUT_LINE_NUMBER}-1])+${CURSOR_LINE}, ${CURSOR_COLUMN})"
else
AUTOCMD_TERMCLOSE_CMD="normal G"
fi
exec nvim 63<&0 0</dev/null \
-u NONE \
-c 'packadd leap.nvim' \
-c "lua require('leap').add_default_mappings()" \
-c 'highlight link LeapBackdrop Comment' \
2023-05-07 22:56:36 -07:00
-c "map <silent> q :qa!<CR>" \
-c "set scrollback=100000 nonumber termguicolors laststatus=0 clipboard+=unnamedplus" \
-c "autocmd TermEnter * stopinsert" \
-c "autocmd TermClose * ${AUTOCMD_TERMCLOSE_CMD}" \
-c 'terminal sed </dev/fd/63 -e "s/'$'\x1b'']8;;file:[^\]*[\]//g" && sleep 0.01 && printf "'$'\x1b'']2;"'
# Source: https://github.com/kovidgoyal/kitty/issues/719#issuecomment-1179602324