Reformat all fish files

This commit is contained in:
mitchell 2020-08-15 19:20:08 -04:00
parent 2f5438dc21
commit 0a0a2decef
11 changed files with 112 additions and 102 deletions

View file

@ -1,8 +1,8 @@
# temp creates a temporary file in your editor, with the given filetype.
function temp -a ft
set file "._temp.$ft"
set file "._temp.$ft"
touch $file
$EDITOR $file
rm $file
touch $file
$EDITOR $file
rm $file
end