Procházet zdrojové kódy

Guard against empty

master
Arun Prakash Jana před 5 roky
rodič
revize
3c69e6ccac
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: A75979F35C080412
3 změnil soubory, kde provedl 7 přidání a 5 odebrání
  1. +1
    -1
      misc/quitcd/quitcd.bash
  2. +5
    -3
      misc/quitcd/quitcd.fish
  3. +1
    -1
      misc/quitcd/quitcd.zsh

+ 1
- 1
misc/quitcd/quitcd.bash Zobrazit soubor

@@ -1,7 +1,7 @@
n ()
{
# Block nesting of nnn in subshells
if [ "${NNNLVL:-0}" -ge 1 ]; then
if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then
echo "nnn is already running"
return
fi


+ 5
- 3
misc/quitcd/quitcd.fish Zobrazit soubor

@@ -4,9 +4,11 @@

function n --description 'support nnn quit and change directory'
# Block nesting of nnn in subshells
if [ (expr $NNNLVL + 0) -ge 1 ]
echo "nnn is already running"
return
if test -n NNNLVL
if [ (expr $NNNLVL + 0) -ge 1 ]
echo "nnn is already running"
return
end
end

# The default behaviour is to cd on quit (nnn checks if NNN_TMPFILE is set)


+ 1
- 1
misc/quitcd/quitcd.zsh Zobrazit soubor

@@ -1,7 +1,7 @@
n ()
{
# Block nesting of nnn in subshells
if [ "${NNNLVL:-0}" -ge 1 ]; then
if [ -n $NNNLVL ] && [ "${NNNLVL:-0}" -ge 1 ]; then
echo "nnn is already running"
return
fi


Načítá se…
Zrušit
Uložit