diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2018-08-16 22:54:49 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2018-08-16 22:54:49 +0530 |
commit | 8b8e644cf50492967a5f24d32ad36cfe74b13aa0 (patch) | |
tree | b1c462ef92f2dc8afc0d35a579de048f2c66c650 /Makefile | |
parent | 9d3f75f63b71d80d9ae753956476e801b687e6f3 (diff) | |
download | nnn-8b8e644cf50492967a5f24d32ad36cfe74b13aa0.tar.gz |
Remove readline dep and use native prompt
- `nnn` is all about navigational convenience so the user doesn't have to type
- the binary size increases due to readline linkage
- alternative workflow: ^G, cd, `nnn`
- readline required using the prompt and the history would stay after quit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -8,7 +8,6 @@ INSTALL ?= install CFLAGS ?= -O3 CFLAGS += -Wall -Wextra -Wno-unused-parameter -LDLIBS = -lreadline ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw) |