mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Makefile option to compile with PCRE lib
Command: make O_PCRE=1 strip
This commit is contained in:
parent
e5ad7d81ff
commit
1684d7b24e
5
Makefile
5
Makefile
|
@ -37,6 +37,11 @@ else
|
|||
LDLIBS += -lreadline
|
||||
endif
|
||||
|
||||
ifeq ($(O_PCRE),1)
|
||||
CPPFLAGS += -DPCRE
|
||||
LDLIBS += -lpcre
|
||||
endif
|
||||
|
||||
ifeq ($(O_NOLOC),1)
|
||||
CPPFLAGS += -DNOLOCALE
|
||||
endif
|
||||
|
|
|
@ -58,7 +58,7 @@ It runs smoothly on the Pi, [Termux](https://www.youtube.com/watch?v=AbaauM7gUJw
|
|||
- CD on quit (*easy* shell integration)
|
||||
- Search
|
||||
- Instant filtering with *search-as-you-type*
|
||||
- Regex and substring (default) matches
|
||||
- Regex (POSIX/PCRE) and string (default) filters
|
||||
- Subtree search plugin to open or edit files
|
||||
- Sort
|
||||
- Ordered pure numeric names by default (visit _/proc_)
|
||||
|
|
Loading…
Reference in a new issue