fish: functions: Remove tmux and some git aliases
We will introduce equivalent ones with abbreviations.
This commit is contained in:
parent
1b5a8f5edb
commit
6474278ca1
8 changed files with 0 additions and 27 deletions
|
@ -1,3 +0,0 @@
|
|||
function gd
|
||||
git diff $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function gf
|
||||
git fetch --all --tags -f
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function gs --wraps='git status'
|
||||
git status
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function gsv --wraps='git status'
|
||||
git status --verbose
|
||||
end
|
|
@ -1,6 +0,0 @@
|
|||
function ta --description 'Attaches to a selected session'
|
||||
set session (tmux list-sessions | fzf | awk -F':' '{print $1}')
|
||||
if test -n "$session"
|
||||
tmux attach -t $session
|
||||
end
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function tks --wraps='tmux kill-server' --description 'alias tks=tmux kill-server'
|
||||
tmux kill-server $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function tksa --wraps='tmux kill-session -a' --description 'alias tksa=tmux kill-session -a'
|
||||
tmux kill-session -a $argv
|
||||
end
|
|
@ -1,3 +0,0 @@
|
|||
function tls --wraps='tmux ls' --description 'alias tls=tmux ls'
|
||||
tmux ls $argv
|
||||
end
|
Loading…
Reference in a new issue