mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Update scripts
This commit is contained in:
parent
64d06ccaee
commit
bac4c27191
|
@ -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
|
||||
- Jump HOME or back to the last visited directory (as usual!)
|
||||
- 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
|
||||
- Customizable bash script nlay to handle known file types
|
||||
- Disk usage analyzer mode
|
||||
|
|
|
@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn"
|
|||
|
||||
n()
|
||||
{
|
||||
nnn -d
|
||||
if [ -n "$1" ]; then
|
||||
nnn -d "$1"
|
||||
else
|
||||
nnn -d
|
||||
fi
|
||||
|
||||
if [ -f $NNN_TMPFILE ]; then
|
||||
. $NNN_TMPFILE
|
||||
rm $NNN_TMPFILE
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
export NNN_TMPFILE="/tmp/nnn"
|
||||
|
||||
function n --description 'support nnn quit and change directory'
|
||||
nnn -d
|
||||
nnn -d $argv[1]
|
||||
|
||||
if test -e $NNN_TMPFILE
|
||||
. $NNN_TMPFILE
|
||||
rm $NNN_TMPFILE
|
||||
|
|
|
@ -2,7 +2,12 @@ export NNN_TMPFILE="/tmp/nnn"
|
|||
|
||||
n()
|
||||
{
|
||||
nnn -d
|
||||
if [ -n "$1" ]; then
|
||||
nnn -d "$1"
|
||||
else
|
||||
nnn -d
|
||||
fi
|
||||
|
||||
if [ -f $NNN_TMPFILE ]; then
|
||||
. $NNN_TMPFILE
|
||||
rm $NNN_TMPFILE
|
||||
|
|
Loading…
Reference in a new issue