Commit 590d079 1 parent f9a249c commit 590d079 Copy full SHA for 590d079
File tree 5 files changed +24
-4
lines changed
5 files changed +24
-4
lines changed Original file line number Diff line number Diff line change
1
+ nnn v1.2
2
+ 2017-06-29
3
+
4
+ What's in?
5
+ - Use the desktop opener (xdg-open on Linux, open(1) on OS X) to open files
6
+ - Option `NNN_USE_EDITOR` to open text files in EDITOR (fallback vi)
7
+ - Bookmark support (maximum 10, key `b`)
8
+ - *Navigate-as-you-type* mode (key `Insert` or option `-i`)
9
+ - Subtree search: gnome-search-tool, fallback catfish (key `^/`) (customizable)
10
+ - Show current directory content size and file count in disk usage mode
11
+ - Add detail view mode as default, use `-l` to start in light mode
12
+ - Shortcuts `F2` and `^L` to refresh and unfilter
13
+ Note: if filter is empty, `Enter` *opens* the currently selected file now
14
+ - Help screen shows bookmarks and configuration
15
+ - Show a message when calculating disk usage
16
+ - Show the spawned shell level
17
+ - Linux only: use vlock as the locker on timeout (set using `NNN_IDLE_TIMEOUT`)
18
+
19
+ -------------------------------------------------------------------------------
20
+
1
21
nnn v1.1
2
22
2017-05-12
3
23
Original file line number Diff line number Diff line change 1
- VERSION = 1.1
1
+ VERSION = 1.2
2
2
3
3
PREFIX ?= /usr/local
4
4
MANPREFIX = $(PREFIX ) /share/man
Original file line number Diff line number Diff line change 1
- VERSION = 1.1
1
+ VERSION = 1.2
2
2
3
3
PREFIX = /usr/local
4
4
MANPREFIX = $(PREFIX)/share/man
Original file line number Diff line number Diff line change 1
- .Dd May 12 , 2017
1
+ .Dd Jun 29 , 2017
2
2
.Dt NNN 1
3
3
.Os
4
4
.Sh NAME
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ disabledbg()
96
96
#endif /* DEBUGMODE */
97
97
98
98
/* Macro definitions */
99
- #define VERSION "v1.1 "
99
+ #define VERSION "1.2 "
100
100
#define LEN (x ) (sizeof(x) / sizeof(*(x)))
101
101
#undef MIN
102
102
#define MIN (x , y ) ((x) < (y) ? (x) : (y))
You can’t perform that action at this time.
0 commit comments