From 021c6b9c9e0c7aea004e2dec780a43f580e28549 Mon Sep 17 00:00:00 2001 From: Paul Irish Date: Wed, 1 May 2024 14:07:54 -0700 Subject: [PATCH] dont alias cp/rm/mv. doesnt play well with fish completion --- fish/aliases.fish | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/fish/aliases.fish b/fish/aliases.fish index 47c470ce7..0f8e45d94 100644 --- a/fish/aliases.fish +++ b/fish/aliases.fish @@ -10,9 +10,9 @@ function ..... ; cd ../../../.. ; end function grep ; command grep --color=auto $argv ; end # mv, rm, cp -alias mv 'command mv --interactive --verbose' -alias rm 'command rm --interactive --verbose' -alias cp 'command cp --interactive --verbose' +abbr mv 'mv -v' +abbr rm 'rm -v' +abbr cp 'cp -v' alias chmox='chmod +x' @@ -155,5 +155,8 @@ alias rppunit 'npm run unittest -- --expanded-reporting --mocha-fgrep=Processor\ alias rppinter 'npm run interactionstest -- --test-file-pattern="*/performance/**"' alias rppscreen 'third_party/node/node.py --output scripts/test/run_test_suite.js --config test/interactions/test-runner-config.json --mocha-fgrep "[screenshot]" --test-file-pattern="*/performance/**"' +abbr xpraclient "xpra attach --video-scaling=off --desktop-scaling=off --dpi=96 --ssh=/usr/bin/ssh 'ssh://glurp/:110'" -abbr xpraclient "xpra attach --video-scaling=off --desktop-scaling=off --dpi=96 --ssh=/usr/bin/ssh 'ssh://glurp/:110'" \ No newline at end of file +function delbranch + git branch -D "$argv" && git push paul ":$argv" +end \ No newline at end of file