1
1
mirror of https://github.com/jarun/nnn.git synced 2024-09-22 02:18:04 +03:00
nnn/README.md

199 lines
7.2 KiB
Markdown
Raw Normal View History

## nnn
2016-08-20 19:27:14 +03:00
Noice is Not Noice, a noicer fork...
2016-08-20 19:27:14 +03:00
2017-04-06 03:57:16 +03:00
<br>
[![nnn-demo-20170405.mp4](https://i.imgur.com/VGA6IcB.png)](https://static.zhimingwang.org/nnn-demo-20170405.mp4 "Click for some action!")
<p align="center"><a href="https://static.zhimingwang.org/nnn-demo-20170405.mp4">Click for some action!</a></p>
2017-04-04 17:27:44 +03:00
2017-03-29 08:33:22 +03:00
### Table of Contents
2016-08-20 19:27:14 +03:00
2017-03-29 08:33:22 +03:00
- [Introduction](#introduction)
- [Why fork?](#why-fork)
- [Original features](#original-features)
- [nnn toppings](#nnn-toppings)
2017-03-29 08:33:22 +03:00
- [Installation](#installation)
- [Usage](#usage)
- [Keyboard shortcuts](#keyboard-shortcuts)
2017-03-31 05:52:51 +03:00
- [Filters](#filters)
- [File type abbreviations](#file-type-abbreviations)
2017-03-29 08:33:22 +03:00
- [Help](#help)
- [Copy current file path to clipboard](#copy-current-file-path-to-clipboard)
2017-03-29 08:33:22 +03:00
- [Change file associations](#change-file-associations)
2016-08-21 15:07:18 +03:00
2017-03-29 08:33:22 +03:00
### Introduction
nnn is a fork of [noice](http://git.2f30.org/noice/), a blazing-fast terminal file browser with easy keyboard shortcuts for navigation, opening files and running tasks. It is developed with terminal based systems in mind. However, the incredible user-friendliness and speed make it a perfect utility on modern distros.
2017-03-29 08:33:22 +03:00
The only issue with noice is hard-coded file associations. There is no config file (better performance and simpler to maintain) and one has to modify the source to change associations (see [how to change file associations](#change-file-associations)). nnn solves the problem by adding the flexibility of using the default desktop opener at runtime. There are several other improvements too (see [fork-toppings](#fork-toppings)).
2017-03-29 08:33:22 +03:00
You can try
alias n='nnn -d'
and see how nnn simplifies those long desktop sessions.
Have fun with it! PRs are welcome. Check out [#1](https://github.com/jarun/nnn/issues/1).
2017-03-29 08:33:22 +03:00
### Why fork?
I chose to fork because:
2017-03-29 08:33:22 +03:00
- one can argue my approach deviates from the goal of the original project - keep the utility `suckless`. In my opinion evolution is the taste of time.
- I would like to have a bit of control on what features are added in the name of desktop integration. A feature-bloat is the last thing in my mind.
### Original features
2017-03-29 08:33:22 +03:00
- Super-easy navigation
2017-04-06 10:06:59 +03:00
- Pre-defined associaitons for different file types
2016-08-21 15:07:18 +03:00
- Jump to home directory
2016-08-21 19:10:34 +03:00
- Filter contents in current directory
2016-08-21 15:07:18 +03:00
- Show/hide hidden files
2017-03-30 07:39:21 +03:00
- Sort entries by modification time (newest to oldest)
2017-03-31 21:05:48 +03:00
- Spawn a `SHELL` in current directory (fallback sh)
2016-08-21 15:07:18 +03:00
- Run `top`
2017-03-31 19:55:56 +03:00
- Edit a file with `EDITOR` (fallback vi)
- Page through a file in `PAGER` (fallback less)
2016-08-21 15:07:18 +03:00
### nnn toppings
2016-08-20 19:27:14 +03:00
2017-03-29 13:29:56 +03:00
- Behaviour and navigation
2017-03-30 07:39:21 +03:00
- Detail view (default: disabled) with:
2017-04-06 10:06:59 +03:00
- file type (directory, regular, symlink etc.)
2017-03-30 07:39:21 +03:00
- modification time
- human-readable file size
- current item in reverse video
2017-03-30 16:24:18 +03:00
- number of items in current directory
2017-04-06 10:06:59 +03:00
- full name of currently selected file in 'bar'
- Show details of the currently selected file (stat, file)
2017-04-01 23:18:33 +03:00
- Directories first
- Sort numeric names in numeric order
- Case-insensitive alphabetic content listing instead of upper case first
- Key `-` to jump to last visited directory
- Roll over at the first and last entries of a directory (with Up/Down keys)
2017-03-31 05:52:51 +03:00
- Removed navigation restriction with relative paths (and let permissions handle it)
- Sort entries by file size (largest to smallest)
- Shortcut to invoke file name copier (set using environment variable `NNN_COPIER`)
2016-08-20 19:27:14 +03:00
- File associations
2017-03-31 05:52:51 +03:00
- Environment variable `NNN_OPENER` to let desktop opener handle it all. E.g.:
2016-08-21 11:28:53 +03:00
export NNN_OPENER=xdg-open
export NNN_OPENER=gnome-open
export NNN_OPENER=gvfs-open
- Selective file associations (ignored if `NNN_OPENER` is set):
2017-04-06 10:06:59 +03:00
- Associate plain text files (determined using file) with vi
- Associate common audio and video mimes with mpv
2017-03-29 08:33:22 +03:00
- Associate PDF files with [zathura](https://pwmt.org/projects/zathura/)
2017-03-31 05:52:51 +03:00
- Removed `less` as default file opener (there is no universal standalone opener utility)
2017-04-06 10:06:59 +03:00
- Environment variable `NNN_FALLBACK_OPENER` is the last line of defense:
- If the executable in static file association is missing
- If a file type was not handled in static file association
- This may be the best option to set your desktop opener to
2017-04-01 15:02:58 +03:00
- Optimizations
2017-04-06 10:06:59 +03:00
- All redundant buffer removal
2017-04-01 15:02:58 +03:00
- All frequently used local chunks now static
2017-04-06 10:06:59 +03:00
- No runtime surprises (0 malloc/free)
2017-04-01 15:02:58 +03:00
- Removed some redundant string allocation and manipulation
- Simplified some roundabout procedures
- `-O3` level optimization, warning fixes
2017-03-29 08:33:22 +03:00
- Added compilation flag `-march=native`
- Remove generated config.h on `make clean`
2017-03-29 23:59:28 +03:00
- strip the final binary
2017-03-29 08:33:22 +03:00
### Installation
nnn needs a curses implementation and standard libc.
2016-08-20 19:27:14 +03:00
Download the [latest master](https://github.com/jarun/nnn/archive/master.zip) or clone this repository. Compile and install:
2016-08-20 19:27:14 +03:00
$ make
$ sudo make install
2017-03-29 08:33:22 +03:00
No plans of packaging at the time.
2016-08-20 19:27:14 +03:00
2017-03-29 08:33:22 +03:00
### Usage
2016-08-20 19:27:14 +03:00
Start nnn (default: current directory):
2016-08-21 13:32:03 +03:00
2017-04-01 08:18:18 +03:00
$ nnn [-d] [path_to_dir]
-d: open in detail view mode
`>` indicates the currently selected entry in nnn.
2016-08-21 13:32:03 +03:00
2017-03-29 08:33:22 +03:00
### Keyboard shortcuts
2016-08-21 13:32:03 +03:00
2017-03-29 08:33:22 +03:00
| Key | Function |
| --- | --- |
2017-04-03 20:03:46 +03:00
| `Up`, `k`, `^P` | Previous entry |
| `Down`, `j`, `^N` | Next entry |
| `PgUp`, `^U` | Scroll half page up |
| `PgDn`, `^D` | Scroll half page down |
| `Home`, `g`, `^`, `^A` | Jump to first entry |
| `End`, `G`, `$`, `^E` | Jump to last entry |
2017-04-03 20:03:46 +03:00
| `Right`, `Enter`, `l`, `^M` | Open file or enter dir |
| `Left`, `Backspace`, `h`, `^H` | Go to parent dir |
| `~` | Jump to HOME dir |
| `-` | Jump to last visited dir |
2017-04-03 20:03:46 +03:00
| `/`, `&` | Filter dir contents |
| `c` | Show change dir prompt |
| `d` | Toggle detail view |
| `D` | Show details of selected file |
| `.` | Toggle hide .dot files |
| `s` | Toggle sort by file size |
| `t` | Toggle sort by modified time |
| `!` | Spawn `SHELL` in `PWD` (fallback sh) |
| `z` | Run `top` |
| `e` | Edit entry in `EDITOR` (fallback vi) |
| `p` | Open entry in `PAGER` (fallback less) |
| `^K` | Invoke file name copier |
| `^L` | Force a redraw |
| `?` | Show help |
| `q` | Quit |
2017-03-29 08:33:22 +03:00
2017-03-31 05:52:51 +03:00
### Filters
Filters support regexes to display only the matched entries in the current directory view. This effectively allows searching through the directory tree for a particular entry.
2017-04-04 17:27:44 +03:00
Filters do not stack on top of each other. They are applied anew every time.
An empty filter expression resets the filter.
2017-03-31 05:52:51 +03:00
If nnn is invoked as root the default filter will also match hidden files.
### File type abbreviations
The following abbreviations are used in the detail view:
| Symbol | File Type |
| --- | --- |
2017-03-30 16:24:18 +03:00
| `/` | Directory |
| `*` | Executable |
| `|` | Fifo |
| `=` | Socket |
| `@` | Symbolic Link |
| `b` | Block Device |
| `c` | Character Device |
2017-03-29 08:33:22 +03:00
### Help
$ man nnn
2017-03-29 08:33:22 +03:00
### Copy current file path to clipboard
nnn can pipe the absolute path of the current file to a copier script. For example, you can use `xsel` on Linux or `pbcopy` on OS X.
Sample Linux copier script:
#!/bin/sh
echo -n $1 | xsel --clipboard --input
export `NNN_OPENER`:
export NNN_COPIER="/home/vaio/copier.sh"
Start nnn and use `Ctrl-k` to copy the absolute path (from `/`) of the file under the cursor to clipboard.
2017-03-29 08:33:22 +03:00
### Change file associations
2017-04-01 01:23:49 +03:00
If you want to set custom applications for certain mime types, or change the ones set already (e.g. vi, mpv, zathura), modify the `assocs` structure in [config.def.h](https://github.com/jarun/nnn/blob/master/config.def.h) (it's easy). Then re-compile and install.