C1 shadows (rm, cat, ls, less, du, bash, top, ping, ssh, rg, mkdir, help) fall back to the bare command when __fish_config_op_aliases is falsy; rm falls back to exact 'command rm' with no wrapper. C2 gates the auto-venv PWD hook. C3 gates smart_exit (composing with Task #4 logging), fish_right_prompt, and all six expand_bang_*/expand_typo_sub functions atomically with the bang-bang system. C4 integration commands (spwin, tab, split, hist, logs, upgrade) refuse with a colored stderr error when disabled. config.fish now also strips the CachyOS distro config's own bang-bang bindings, history override, and alias opinions per category, restoring fish stock functions where they exist.
22 lines
663 B
Fish
22 lines
663 B
Fish
# Execute expand_bang_minus_n
|
|
function expand_bang_minus_n --description 'Execute expand_bang_minus_n'
|
|
# Opinionated guard (C3): no expansion when overrides are disabled.
|
|
__fish_config_op_enabled __fish_config_op_overrides; or return 1
|
|
|
|
set -l token $argv[1]
|
|
if test -z "$token"; set token (commandline -t); end
|
|
|
|
# Extract the number from the regex match
|
|
if string match -qr '!-(\d+)' -- "$token"
|
|
set -l n (string match -r '!-(\d+)' -- "$token")[2]
|
|
|
|
if test (count $history) -ge $n
|
|
echo -- $history[$n]
|
|
else
|
|
echo -- $token
|
|
end
|
|
else
|
|
echo -- $token
|
|
end
|
|
end
|