-
-
Notifications
You must be signed in to change notification settings - Fork 762
Concepts
Project dir in preview
Open multiple locations with 4 contexts. The status is shown in the top left corner:
- the current context is in reverse video
- other active contexts are underlined
- rest are inactive
Create and cycle contexts using Tab or Shift+Tab. A new context copies the state of the previous context.
Use context-specific colors (see configuration NNN_COLORS
) to identify each context easily.
The nnn
way is to work with multiple contexts using Tab or Shift+Tab.
Other solutions:
- terminal multiplexers (tmux, GNU Screen, dvtm, SplitVT)
- terminal emulators with split support (Terminator, Tilix)
For example, to open 2 instances in dvtm
, run:
dvtm n n
You can also have an alias:
alias 2="dvtm n n"
or a Bash function (with ^\ as dvtm modifier) to handle arguments:
2 ()
{
dvtm -m '^\' "nnn -nr $@" "nnn -nr $@"
}
Sessions 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.
Notes:
- 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".
- The persistent session option is global. If it is used, the last active session will be updated with the final state at program quit.
- The "auto session" is used in persistent session mode if no session is active.
- Listing input stream and opening a bookmark by key have higher priority to session options (
-s
/-S
).
All the session files are located by session name in the directory
${XDG_CONFIG_HOME:-$HOME/.config}/nnn/sessions
"@" is the "auto session" file.
Filters 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.
When there's a unique match and it's a directory, nnn
auto-enters the directory. Program option -A
disables this.
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 |
- to list all matches starting with the filter expression, start with a
^
(caret) - type
\.mkv
to list all MKV files - use
.*
to match any character (sort of fuzzy search) - exclude filenames having
nnn
(with PCRE):^(?!nnn)
Use regex for case-sensitive filtering with wide chars as the function strcasestr
(used for string filters) does not work with multibyte locales (ref1, ref2).
In this mode directories are opened in filter mode, allowing continuous navigation.
To start in type-to-nav mode, use the program option -n
or press ^N.
Additional special keys at empty filter prompt in type-to-nav mode:
Listing 1 | Listing 2 | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
nnn
allows file selection across directories and contexts!
There are 3 groups of keybinds to add files to selection:
- hovered file selection toggle
- deselects if
+
is visible before the entry, else adds to selection
- deselects if
- add a range of files to selection
- repeat the range key on the same entry twice to clear selection completely
- add all files in the current directory to selection
A selection can be edited, copied, moved, removed, archived or linked. Example workflow to copy or move some files:
- add files from source dirs (you can select files from multiple dirs in
nnn
) to selection - navigate to a target directory
- use ^P (cp) or ^V (mv) to copy or move the selected files
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 nnn
open in 2 panes of a terminal multiplexer, you can select in one pane and use the selection in the other pane. The selection gets cleared in the nnn
instance where the selection was made on mv/rm (but not on cp).
nnn
clears the selection after a successful operation with the selection. Plugins are allowed to define the behaviour individually.
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.
Use the program option -x
to copy selection to the system clipboard. You must have plugins installed.
Many plugins use this method. The file paths are NUL
-terminated, so additional processing is required to make them usable.
To run ls -l
on the file paths in selection:
xargs -0 ls -l < "${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection"
An special variable may be handy:
export sel=${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection
so you can easily handle files together (even at the nnn
command prompt!):
xargs -0 ls -l < $sel
There are two ways to search and list:
- feed a list of file paths as input
- search using a plugin (e.g.
finder
) and list the results
File paths must be NUL-separated ('\0'). Paths 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 nnn
by writing to its standard input. E.g., to list files in current directory larger than 1M:
find -maxdepth 1 -size +1M -print0 | nnn
# fd -d 2 -S +1M -0 | 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\0", $1}' | nnn
# fd -d 1 | file -if- | grep "$1" | awk -F: '{printf "%s\0", $1}' | 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.
Right or l on a symlink inside 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.
The prompts (except the filter prompt) support readline-like command-line shortcuts. Enter or ^D at the empty prompt (except the filter prompt) exits the prompt.
Key ^L clears and Esc exits all prompts.
The handy REPL command prompt (shows on ]) understands environment variables (like $PWD
). Refer to your shell's documentation (e.g. BASH_ENV
for bash, ~/.zshenv
for zsh) to use aliases and functions. To fuzzy-select commands from your shell history at the command prompt and issue them after editing (like fc), copy the plugin fzhist
(as h
maybe?) in your $PATH
.
The native command prompt remembers the last 16 commands executed in the current session. To access and use the shell's history add a shell function similar to:
h ()
{
fzf <~/shell-specific_history_file | tr -d '\n' | xsel -bi
}
Paste the selected command at the prompt using Ctrl-Shift-V, optionally edit and run.
All binary questions are confirmed by y or Y.
The following special variables can be accessed from the command prompt or a spawned shell:
Variable | Substitution |
---|---|
$nnn |
Hovered file name in current context |
$dN |
Path open in context N [N=1/2/3/4] |
$fN |
File path hovered in context N [N=1/2/3/4] |
E.g. to copy the hovered file in context 1 to the directory open in context 3, run cp "$f1" "$d3"
.
Selection can be accessed from the native command prompt:
Variable | Substitution |
---|---|
%j |
repeat cmd with all %j substituted by each selected file path |
%J |
run the command only once with %J as the last characters substituted by all selected file paths |
E.g.
Look up a string in each file in selection:
printf "Searching for string in %s\n" "%j"; grep "string" "%j"
Archive all files in selection:
tar uvf archive.tar %J
Notes:
- You can only use either
%j
or%J
inside a single command. If both are encountered the prompt will close. No command will be executed. - When using
%J
nnn
will automatically escape special characters. Any%J
not at the end of the command will be left unsubstituted.
The prompt (non-readline nnn
-internal one) can remember the last executed command. Sometimes it may be desirable copy a command from shell history to the prompt. Keybinds can be configured to copy a command from bash/zsh prompt to the system clipboard. You can use these at the subshell prompt and paste the command at the prompt with Ctrl-Shift-V.
# bash: add in ~/.bashrc
# copy current line to clipboard with ^]
if [[ -n $DISPLAY ]]; then
copy_line_to_x_clipboard () {
printf %s "$READLINE_LINE" | xsel -ib
}
bind -x '"\C-]": copy_line_to_x_clipboard'
fi
# zsh: add in ~/.zshrc
# copy current line to clipboard with ^U
if [[ -n $DISPLAY ]]; then
x-kill-whole-line () {
zle kill-whole-line
print -rn -- "$CUTBUFFER" | xsel -ib
}
zle -N x-kill-whole-line
bindkey '\C-u' x-kill-whole-line
fi
nnn
(the core C utility) is, generally speaking, feature-restricted. It includes features which you really need so it can remain light enough to finish your workflow accurately before your train of thought is lost.
nnn
supports plugins to extend its capabilities.
Here's a list of the design principles driving the core nnn
program:
-
nnn
complements X, doesn't substitute it- Brings the best of CLI to a GUI user
- Doesn't expect the user to abandon GUI (the GUI is well-established for a reason)
- Zero-config comfort-zone for GUI users out of the box
- Quick and distraction-free workflows
- Clean and clutter-free single-window view focused on content
- Easily switch context/tabs with (Sh)TAB
- Only directories in color, no icons
- To search/group by extension, use filter or sort by extension option
- Support external or plugin-based previewers by writing the the hovered file path to a custom FIFO.
- One utility instead of multiple utilities for related tasks e.g.
- file management, batch rename, disk usage analysis, launching apps etc.
- No configuration file and few environment variables
- Stay portable - very limited library dependencies
- support compiling out features
- Use a standard desktop opener to handle file associations
- Analyze disk usage within the same filesystem, do not follow symbolic links
- Case-insensitive alphabetic content listing instead of all uppercase first
- Directories first in all modes (even in disk usage analyzer mode)
- No navigation restriction with relative paths (let permissions handle it)
- Directory updates are disabled in the following modes:
- disk usage: re-scans are issued on every change in dir
- filter mode: content refresh is very disruptive in the workflow
- Limited (4) number of contexts; for more, please refer to make option
O_CTX8
- file paths copy-paste should work seamlessly between contexts and instances of
nnn
- file paths copy-paste should work seamlessly between contexts and instances of
- Scan each directory on visit (even in disk usage analyzer mode) rather than storing all the information from the first scan. This keeps the information up to date. To compensate, use fast re-scan with highly optimized algorithms.
- The nnn magic!
- Add bookmarks
- Configure cd on quit
- Sync subshell
$PWD
- Hot-plugged drives
- Image, video, pdf
- Detached text
- Run commands
- Launch applications
- Open as root
- File picker
- Remote mounts
- Synced quick notes
- Drag and drop
- Duplicate file
- Create batch links
- Hidden files on top
- Disable bold fonts
- Themes
- Live previews
- File icons
- Custom keybinds
- CLI-only opener
- Desktop integration
- cp mv progress
- Control active dir
- Termux tips
- Pager as opener
- Working with lftp
- Power toys