@@ -59,7 +59,7 @@ Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/i | |||||
- Super-easy navigation with roll-over at edges | - Super-easy navigation with roll-over at edges | ||||
- Jump HOME or back to the last visited directory (as usual!) | - Jump HOME or back to the last visited directory (as usual!) | ||||
- Jump to initial dir, chdir prompt, cd ..... (with . as PWD) | - Jump to initial dir, chdir prompt, cd ..... (with . as PWD) | ||||
- Search-as-you-type | |||||
- Filter directory contents with search-as-you-type | |||||
- Desktop opener integration to handle mime types | - Desktop opener integration to handle mime types | ||||
- Customizable bash script nlay to handle known file types | - Customizable bash script nlay to handle known file types | ||||
- Disk usage analyzer mode | - Disk usage analyzer mode | ||||
@@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn" | |||||
n() | n() | ||||
{ | { | ||||
nnn -d | |||||
if [ -n "$1" ]; then | |||||
nnn -d "$1" | |||||
else | |||||
nnn -d | |||||
fi | |||||
if [ -f $NNN_TMPFILE ]; then | if [ -f $NNN_TMPFILE ]; then | ||||
. $NNN_TMPFILE | . $NNN_TMPFILE | ||||
rm $NNN_TMPFILE | rm $NNN_TMPFILE | ||||
@@ -1,7 +1,8 @@ | |||||
export NNN_TMPFILE="/tmp/nnn" | export NNN_TMPFILE="/tmp/nnn" | ||||
function n --description 'support nnn quit and change directory' | function n --description 'support nnn quit and change directory' | ||||
nnn -d | |||||
nnn -d $argv[1] | |||||
if test -e $NNN_TMPFILE | if test -e $NNN_TMPFILE | ||||
. $NNN_TMPFILE | . $NNN_TMPFILE | ||||
rm $NNN_TMPFILE | rm $NNN_TMPFILE | ||||
@@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn" | |||||
n() | n() | ||||
{ | { | ||||
nnn -d | |||||
if [ -n "$1" ]; then | |||||
nnn -d "$1" | |||||
else | |||||
nnn -d | |||||
fi | |||||
if [ -f $NNN_TMPFILE ]; then | if [ -f $NNN_TMPFILE ]; then | ||||
. $NNN_TMPFILE | . $NNN_TMPFILE | ||||
rm $NNN_TMPFILE | rm $NNN_TMPFILE | ||||