fish: functions: Remove unused aliases

This commit is contained in:
Sanchayan Maity 2023-04-26 17:28:34 +05:30
parent 798cffa9f4
commit 1369f826cb
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
5 changed files with 0 additions and 21 deletions

View File

@ -1,6 +0,0 @@
function bo --description "Open a bookmark saved by qutebrowser"
set url (cat ~/.config/qutebrowser/bookmarks/urls | fzf | awk -F" " '{print $1}')
if test -n "$url"
qutebrowser $url
end
end

View File

@ -1,3 +0,0 @@
function coqtop
rlwrap coqtop $argv
end

View File

@ -1,3 +0,0 @@
function fu
fnm use
end

View File

@ -1,3 +0,0 @@
function gn --wraps='nvim +Git +only' --description 'alias gn=nvim +Git +only'
nvim +Git +only $argv
end

View File

@ -1,6 +0,0 @@
function psmem --description 'Show memory usage of a process'
set proc (ps -ef | fzf | awk '{print $2}')
if test -n "$proc"
ps_mem -p $proc
end
end