Merge f36e40f3d70a5d0ef50353087d5cdeeef0e446b3 into cf4a12acb3a70951fd59d67e0738bf3ab2d1045c

This commit is contained in:
Kipras Melnikovas 2024-03-28 15:05:34 +01:00 committed by GitHub
commit 24f2183c5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,10 @@ fish_shortcuts="/dev/null"
vifm_shortcuts="/dev/null"
# Remove, prepare files
rm -f "$lf_shortcuts" "$ranger_shortcuts" "$qute_shortcuts" "$zsh_named_dirs" "$vim_shortcuts" 2>/dev/null
for file in "$lf_shortcuts" "$ranger_shortcuts" "$qute_shortcuts" "$zsh_named_dirs" "$vim_shortcuts"; do
test -f "$file" && rm -f "$file" 2>/dev/null
done
printf "# vim: filetype=sh\\n" > "$fish_shortcuts"
printf "# vim: filetype=sh\\nalias " > "$shell_shortcuts"
printf "\" vim: filetype=vim\\n" > "$vifm_shortcuts"