![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
DESCRIPTION
KEYBINDSPress ‘ OPTIONS
CONFIGURATIONThere is no configuration file. Associated files are at ${XDG_CONFIG_HOME:-$HOME/.config}/nnn/ Configuration is done using a few optional (set if you need) environment variables. Refer to the ENVIRONMENT section.
CONTEXTSOpen multiple locations with 4 contexts. The status is shown in the top left corner: - the current context is in reverse video
A new context copies the state of the previous context. Each context can have its own color. Refer to the ENVIRONMENT section. SESSIONSSessions are a way to save and restore states of work. A session stores the settings and contexts. Sessions can be loaded at runtime or with a program option. - When a session is loaded at runtime, the last working state is
saved automatically to a dedicated "auto session" session file.
Session option restore would restore the "auto session".
All the session files are located by session name in the directory ${XDG_CONFIG_HOME:-$HOME/.config}/nnn/sessions "@" is the "auto session" file. FILTERSFilters are strings (or regex patterns) to find matching entries
in the current directory instantly (search-as-you-type). Matches are
case-insensitive by default. The last filter in each context is persisted at
runtime or in saved sessions.
Special keys at filter prompt: -------- + --------------------------------------- Key | Function -------- + --------------------------------------- ^char | Usual keybind functionality Esc | Exit filter prompt but skip dir refresh Alt+Esc | Unfilter, quit context -------- + --------------------------------------- Special keys at empty filter prompt: ------ + --------------------------------------- Key | Function ------ + --------------------------------------- ? | Show help and config screen / | Toggle between string and regex : | Toggle case-sensitivity ^L | Clear filter (if prompt is non-empty) | OR apply last filter Bksp | Stay at filter prompt and refresh dir Del | Stay at filter prompt and refresh dir ------ + --------------------------------------- Common regex use cases: (1) To list all matches starting with the filter expression,
In the type-to-nav mode directories are opened in filter mode, allowing continuous navigation. Additional special keys at empty filter prompt in type-to-nav mode: ------ + ------------------------ Key | Function ------ + ------------------------ ' | Go to first non-dir file + | Toggle file selection , | Mark CWD - | Go to last visited dir . | Show hidden files ; | Run a plugin by its key = | Launch a GUI application > | Export file list @ | Visit start dir ] | Show command prompt ` | Visit / ~ | Go HOME ------ + ------------------------ SORTING
The sort key can be set either with the -T program option, or interactively using t or ^T. The following options are available:
The uppercase version of the option (except r) reverses the default order. By default, time and size sort keys are ordered in descending order, and alphabetical fields are ordered in ascending order. For example, when using the e option, the entries will be ordered by extension, in ascending order. Using E would result in descending order of the extensions. This means that e followed by r is the same as E. SELECTION
There are 3 groups of keybinds to add files to selection: (1) hovered file selection toggle
A selection can be edited, copied, moved, removed, archived or linked. Absolute paths of the selected files are copied to
.selection file in the config directory. The selection file is shared
between multiple program instances. Selection from multiple instances are
not merged. The last instance writing to the file overwrites earlier
contents. If you have 2 instances of
To edit the selection use the _edit selection_ key. Editing doesn't end the selection mode. You can add more files to the selection and edit the list again. If no file is selected in the current session, this option attempts to list the selection file.
FIND AND LISTThere are two ways to search and list: - feed a list of file paths as input
File paths must be NUL-separated ('\0'). Paths and can be relative to the current directory or absolute. Invalid paths in the input are ignored. Input processing limit is 16,384 paths or 64 MiB (max_paths x max_path_len) of data. To list the input stream, start find -maxdepth 1 -size +1M -print0 | nnn or redirect a list from a file: nnn < files.txt Handy bash/zsh shell function to list files by mime-type in current directory: # to show video files, run: list video list () { find . -maxdepth 1 | file -if- | grep "$1" | awk -F: '{printf "%s%c", $1, 0}' | nnn } A temporary directory will be created containing symlinks to the given paths. Any action performed on these symlinks will be performed only on their targets, after which they might become invalid. > or l on a symlink in the listing dir takes to the target file. Press - to return to the listing dir. Press Enter to open the symlink. Listing input stream can be scripted. It can be extended to pick (option -p) selected entries from the listed results. BOOKMARKSThere are 2 ways (can be used together) to manage bookmarks. (1) Bookmark keys: See NNN_BMS under ENVIRONMENT
section on how to set
(2) Symlinked bookmarks: A symlinked bookmark to the current
directory can
On entering a bookmark, the directory where the select bookmark key was pressed is set as the previous directory. Press - to return to it. UNITSThe minimum file size unit is byte (B). The rest are K, M, G, T, P, E, Z, Y (powers of 1024), same as the default units in ls. ENVIRONMENTThe SHELL, VISUAL (else EDITOR) and PAGER environment variables are used. A single combination of arguments is supported for SHELL and PAGER. NNN_OPTS: binary options to export NNN_OPTS="cEnrx" NNN_OPENER: specify a custom file opener. export NNN_OPENER=nuke NOTE: nuke is a file opener available in the plugin repository. NNN_BMS: bookmark string as key_char:location pairs separated by ;: export NNN_BMS="d:$HOME/Docs;u:/home/user/Cam Uploads;D:$HOME/Downloads/" These bookmarks are listed in the help and config screen (key ?). NNN_PLUG: directly executable plugins as key_char:plugin pairs separated by ;: export NNN_PLUG='f:finder;o:fzopen;p:mocplay;d:diffs;t:nmount;v:imgview' NOTES: 1. To run a plugin directly, press ; followed by the key. 2. Alternatively, combine with Alt (i.e. Alt+key). 3. To skip directory refresh after running a plugin, prefix with -. export NNN_PLUG='p:-plugin'
export NNN_PLUG='x:!chmod +x "$nnn";g:!git log;s:!smplayer "$nnn"' To pick and run an unassigned plugin, press Enter at the plugin prompt. To run a plugin at startup, use the option `-P` followed by the plugin key. NOTES: 1. Place $nnn (or exported variables) in double quotes ("$nnn") 2. Use single quotes for $NNN_PLUG so "$nnn" is not interpreted 3. (Again) add ! before the command 4. To disable directory refresh after running a command as plugin, prefix with -! 5. To skip user confirmation after command execution, suffix with * Note: Do not use * with programs those run and exit e.g. cat export NNN_PLUG='y:-!sync*' 6. To run a GUI app as plugin, add a & after !. export NNN_PLUG='m:-!&mousepad "$nnn"' 7. To show the output of run-and-exit commands which do not need user input, add | (pipe) after ! Note: This option is incompatible with & (terminal output is masked for GUI programs) and ignores * (output is already paged for user). export NNN_PLUG='m:-!|mediainfo "$nnn";t:-!|tree -ps;l:-!|ls -lah --group-directories-first' EXAMPLES: ------------------------------------ + ------------------------------------------------- Key:Command | Description ------------------------------------ + ------------------------------------------------- c:!convert "$nnn" png:- | xclip | Copy image to clipboard -sel clipboard -t image/png* | C:!cp -rv "$nnn" "$nnn".cp* | Create a copy of the hovered file e:-!sudo -E vim "$nnn"* | Edit file as root in vim g:-!git diff | Show git diff h:-!hx "$nnn"* | Open hovered file in hx hex editor k:-!fuser -kiv "$nnn"* | Interactively kill process(es) using hovered file l:-!git log | Show git log n:-!vi /home/user/Dropbox/dir/note* | Take quick notes in a synced file/dir of notes p:-!less -iR "$nnn"* | Page through hovered file in less s:-!&smplayer -minigui "$nnn" | Play hovered media file, even unfinished download x:!chmod +x "$nnn" | Make the hovered file executable y:-!sync* | Flush cached writes ------------------------------------ + ------------------------------------------------- Online docs: https://github.com/jarun/nnn/tree/master/plugins NNN_ORDER: directory-specific sort key. export NNN_ORDER='t:/home/user/Downloads;S:/tmp' NOTE: Sort keys can be a/d/e/r/s/t/v (refer to the SORTING section). Path must be absolute. Timestamps for entries modified/created within 5 minutes are shown in reverse. NNN_COLORS: string of color numbers for each context, e.g.: # 8 color numbers: # 0-black, 1-red, 2-green, 3-yellow, 4-blue (default), 5-magenta, 6-cyan, 7-white export NNN_COLORS='1234' # xterm 256 color numbers (converted to hex, 2 symbols per context): # see https://user-images.githubusercontent.com/1482942/93023823-46a6ba80-f5e1-11ea-9ea3-6a3c757704f4.png export NNN_COLORS='#0a1b2c3d' # both (256 followed by 8 as fallback, separated by ';') export NNN_COLORS='#0a1b2c3d;1234' NOTE: If only 256 colors are specified and the terminal doesn't support, default is used. NNN_FCOLORS: specify file-type specific colors: export NNN_FCOLORS='c1e2272e006033f7c6d6abc4' Specify file-specific colors in xterm 256 color hex numbers (2 symbols per color). Order is strict, use 00 to omit/use default terminal color. Defaults: ------------------------- + --- + ------------- Order | Hex | Color ------------------------- + --- + ------------- Block device | c1 | DarkSeaGreen1 Char device | e2 | Yellow1 Directory | 27 | DeepSkyBlue1 Executable | 2e | Green1 Regular | 00 | Normal Hard link | 60 | Plum4 Symbolic link | 33 | Cyan1 Missing OR file details | f7 | Grey62 Orphaned symbolic link | c6 | DeepPink1 FIFO | d6 | Orange1 Socket | ab | MediumOrchid1 Unknown OR 0B regular/exe | c4 | Red1 ------------------------- + --- + ------------- If the terminal supports xterm 256 colors or more, file-specific colors will be rendered. To force the 8-color scheme use option -C. If xterm 256 colors aren't supported, 8-color scheme will be used. NNN_ARCHIVE: archive extensions to be handled silently (default: bzip2, (g)zip, tar). export NNN_ARCHIVE="\\.(7z|bz2|gz|tar|tgz|zip)$" NOTE: Non-default formats may require a third-party utility. NNN_ARCHMNT: optional archive mounter utility (default: archivemount). export NNN_ARCHIVE='fuse-archive' NNN_SSHFS: specify custom sshfs command with options: export NNN_SSHFS='sshfs -o reconnect,idmap=user,cache_timeout=3600' NOTE: The options must be comma-separated without any space between them. NNN_RCLONE: pass additional options to rclone command: export NNN_RCLONE='rclone mount --read-only --no-checksum' NOTE: The options must be preceded by "rclone" and max 5 flags are supported. NNN_TRASH: trash (instead of rm -rf) files to desktop Trash. export NNN_TRASH=cmd NOTES: 1. cmd is the name/path of the binary that nnn will call for trashing files. E.g to use macOS's native `trash' command: export NNN_TRASH="trash" 2. Special value "1" and "2" for cmd will use trash-cli and gio trash respectively. NNN_SEL: absolute path to custom selection file. export NNN_SEL='/tmp/.sel' NNN_FIFO: path of a named pipe to write the hovered file path: export NNN_FIFO='/tmp/nnn.fifo' NOTES: 1. Overridden by a temporary path with -a option. 2. If the FIFO file doesn't exist it will be created, but not removed (unless it is generated by -a option). Online docs: https://github.com/jarun/nnn/wiki/Live-previews NNN_LOCKER: terminal locker program. export NNN_LOCKER='bmon -p wlp1s0' export NNN_LOCKER='cmatrix' NNN_TMPFILE: always cd on quit and write the command in the file specified. export NNN_TMPFILE='/tmp/.lastd' NNN_HELP: run a program and show the output on top of the program help page. export NNN_HELP='fortune' NNN_MCLICK: key emulated by a middle mouse click. export NNN_MCLICK='^R' NOTE: Only the first character is considered if not a Ctrl+key combo. nnn: this is a special variable. Set to the hovered file name before starting the command prompt or spawning a shell. NO_COLOR: disable ANSI color output (overridden by NNN_COLORS). AUTHORSArun Prakash Jana
<engineerarun@gmail.com>,
HOME
|