···4646 # wewlad: https://github.com/sharkdp/bat/issues/652
4747 # Pending better support from bat, just strip all overstrike chars
4848 # and rely on the syntax highlighting instead of underscores/bold
4949- set -gx MANPAGER "$sed -E 's#(.)\x08\1#\1#g' |
5050- $sed -E 's#_\x08(.)#\1#g' |
5151- bat --plain --language=Manpage"
4949+ set -gx MANPAGER \
5050+ "sh -c \"$sed -E -e 's#(.)\x08\1#\1#g' -e 's#_\x08(.)#\1#g' |
5151+ bat --plain --language=Manpage\""
5252end
53535454if not set -q DOCKER_NAME; and test -f /etc/profile.d/docker_name.sh
+8
.config/fish/functions/__fish_bind_question.fish
···11+function __fish_bind_question
22+ switch (commandline --current-token)[-1]
33+ case '$' '*$'
44+ commandline --insert status
55+ case "*"
66+ commandline --insert '?'
77+ end
88+end
···4747noremap gU <Nop>
4848noremap gUU <Nop>
49495050+" System copy-paste
5151+map <C-C> "+ygv
5252+5053" Use newer info than the macOS builtin
5154let g:infoprg = '/usr/local/opt/texinfo/bin/info'
5255