AutoYADM commit: 2025-04-01 19:55:17

This commit is contained in:
Daniel Fichtinger 2025-04-01 19:55:17 -04:00
parent 93207df70b
commit 78fa6ca8ad
4 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,3 @@
function copyfile function copyf
cat $argv | wl-copy cat $argv | wl-copy
end end

View file

@ -1,3 +1,3 @@
function copypath function copyp
path resolve $argv | wl-copy path resolve $argv | wl-copy
end end

View file

@ -0,0 +1,6 @@
function funcrename --wraps=funced --description 'Renames a user function'
functions --copy $argv[1] $argv[2]
functions --erase $argv[1]
funcsave $argv[2]
rm $fish_function_path[1]/$argv[1].fish
end

View file

@ -0,0 +1,3 @@
function othername
echo Hello
end