Sfoglia il codice sorgente

Fix dragdrop stderr causing issues (#374)

For w/e reason the output from `which` causes problems with nnn
rendering. This commit silences the problematic lines.
master
0xACE Mischievous Meerkat 5 anni fa
parent
commit
955826a1e8
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. +3
    -3
      plugins/dragdrop

+ 3
- 3
plugins/dragdrop Vedi File

@@ -19,10 +19,10 @@ all=

dnd()
{
if which dragon-drag-and-drop; then
dragon-drag-and-drop "$@"
if which dragon-drag-and-drop 2>&1 >/dev/null; then
dragon-drag-and-drop "$@" 2>/dev/null
else
dragon "$@"
dragon "$@" 2>/dev/null
fi
}



Loading…
Annulla
Salva