fish: functions: Rename to not conflict with git abbreviations

This commit is contained in:
Sanchayan Maity 2023-05-09 18:12:17 +05:30
parent 6474278ca1
commit 3851e99f1b
Signed by: sanchayanmaity
GPG Key ID: 6F6A0609C12038F3
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
function gt --description "Get TOTP token with pass-otp"
function po --description "Get TOTP token with pass-otp"
if type -qf pass
pass ls totp | fzf --ansi --exact | sed 's/[^a-zA-Z0-9]//g' | read -l result
if test -n "$result"

View File

@ -1,3 +1,3 @@
function gp --description "Copy password to clipboad with pass tessen"
function pt --description "Copy password to clipboad with pass tessen"
FZF_DEFAULT_OPTS="--exact --height 20 --prompt='pass: ' --reverse" pass tessen
end