Compare commits

...

3 Commits

3 changed files with 51 additions and 51 deletions

View File

@ -2,7 +2,7 @@
Version=1.0
Name=FIREFOX
Exec=/usr/bin/env firefox %U
Icon=firefox
Icon=~/.local/firefox/browser/chrome/icons/default/default128.png
Terminal=false
Type=Application
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;

View File

@ -867,12 +867,12 @@ ssh-verify-file() {
if hash nvim 2> /dev/null; then
vim() {
echo 'using nvim instead'
nvim "$@"
/usr/bin/env nvim "$@"
}
else
vim() {
echo 'nvim not found'
\vim "$@"
/usr/bin/env vim "$@"
}
fi

View File

@ -861,12 +861,12 @@ ssh-verify-file () {
if hash nvim 2>/dev/null; then
vim() {
echo 'using nvim instead'
nvim "$@"
/usr/bin/env nvim "$@"
}
else
vim() {
echo 'nvim not found'
\vim "$@"
/usr/bin/env vim "$@"
}
fi