-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
40 lines (32 loc) · 1.09 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cmenu
=====
interactive menu filter to put in program pipelines
install
-------
$ make
# make install # requires sudo/doas
$ make install PREFIX=~/.local # installs for user
for other actions see the Makefile.
why
---
I was always fascinated by the `dired` feature in emacs, but I couldn't find
any standalone program which could be run from the terminal without an emacs
daemon running in the background and with vi bindings.
Then I realized I could just build a simpler and more general purpose program,
following the unix philosophy and chaining more programs together to implement
`dired` in POSIX shell.
what does it do
---------------
It acts pretty much like fzf and dmenu, but it's brutally simple.
examples
--------
`dired` - directory navigator
license
-------
Most of the code to control the terminal has been borrowed and readjusted from
antirez/kilo, which is licensed under the same license (BSD 2-Clause).
Grazie Salvatore, mo devo offrirti una birra.
inspiration
-----------
GNU Emacs - dired mode
github.com/antirez/kilo - a small C terminal editor in 1000 LOC