Update various stuff

This commit is contained in:
askiiart 2024-01-06 17:40:14 -05:00
parent 40ecaef7aa
commit 15176854c7
Signed by untrusted user who does not match committer: askiiart
GPG key ID: BC3800E55FB54D67
6 changed files with 31 additions and 6 deletions

View file

@ -1,8 +1,6 @@
function bangbang --on-event fish_preexec
set -l command $argv
#if ( echo $commmand | grep -q '!!' )
set -l last_command (history --max 2 | tail --lines 1 | string escape | string escape)
echo $last_command
set -l last_command (history --max 1)
set -l new_command (echo $command | sed -e "s/\!\!/$last_command/g")
# TODO: Figure out how to replace the current command and run that instead
echo "*** New command: $new_command ***"