Changes
4 changed files (+10/-4)
-
-
@@ -8,7 +8,6 @@ abbr -a -- l laabbr -a -- m micro abbr -a -- n nix abbr -a -- o open abbr -a --set-cursor -- t 'kioclient move % trash:/' # Actually ctrl-backspace but fish_key_reader detects it as ctrl-h bind ctrl-h backward-kill-word
-
-
fish/functions/c.fish (new)
-
@@ -0,0 +1,3 @@function c -d "Copy input or file to clipboard" cat $argv | fish_clipboard_copy end
-
-
fish/functions/ccp.fish (deleted)
-
@@ -1,3 +0,0 @@function ccp -d "Copy input or file to clipboard" cat $argv | fish_clipboard_copy end
-
-
fish/functions/t.fish (new)
-
@@ -0,0 +1,7 @@function t -d "Move file or files to trash" if type -q kioclient kioclient move $argv trash:/ else gio trash $argv end end
-