Arun Prakash Jana
0f01bd7d3a
Fix #573 : update docs
4 yıl önce
Arun Prakash Jana
124666cb38
Fix #571
4 yıl önce
Arun Prakash Jana
23770ed049
Update docs
4 yıl önce
lvgx
2200a1c9be
Allow launching plugins with Alt + plugin's key ( #569 )
* Allow launching plugins with Alt + plugin's key
* Fix Alt key in filter/prompts modes
* Fix handling Alt key in nextsel()
In filter mode: run the associated plugin.
In prompt mode: just throw out the Alt+key input.
In nextsel(): differentiate Alt+key and Esc
4 yıl önce
Arun Prakash Jana
770bb47daf
Add some space for badges
4 yıl önce
Arun Prakash Jana
38e61fb864
Skip printing and erasing
4 yıl önce
Arun Prakash Jana
dd4173551f
Update docs
4 yıl önce
Arun Prakash Jana
24d2bc9d3a
Add asciicast image
4 yıl önce
Arun Prakash Jana
f46ec76e99
Auto-lock old issues
4 yıl önce
Arun Prakash Jana
5f3faf613a
Do not leak wfd
4 yıl önce
Arun Prakash Jana
861d44f934
Simplify cd
4 yıl önce
Arun Prakash Jana
cfd4a66596
Fix #565 : chdir when dir is changed
4 yıl önce
Arun Prakash Jana
14beb0746f
Fix #564 : Option -l: number of lines to move on mouse scroll
4 yıl önce
Arun Prakash Jana
609561494f
Remove blocking pipe open in child
4 yıl önce
Arun Prakash Jana
f0535dbd76
Use standard exit status everywhere
4 yıl önce
Arun Prakash Jana
0b0166816a
Use exit status
4 yıl önce
Arun Prakash Jana
7718936737
Block data type
4 yıl önce
Arun Prakash Jana
1f51417c63
Fix reading from pipe when running plugin
4 yıl önce
Arun Prakash Jana
151bbf000d
Increase pipe capacity
4 yıl önce
Arun Prakash Jana
d71379e5b6
Minor doc update
4 yıl önce
Arun Prakash Jana
db3a46a197
Ignore -S when start dir is specified
4 yıl önce
lvgx
fcab64263e
preview-tui: ensure 1st hovered file is previewed ( #561 )
4 yıl önce
lvgx
11c9648774
getplugs: add "master" version support ( #560 )
Pass "master" as first argument to the script.
4 yıl önce
Arun Prakash Jana
2a5f8433b8
Ignore false lint issue
4 yıl önce
Arun Prakash Jana
900b37c56c
Mention tmux version required
4 yıl önce
Arun Prakash Jana
ab9f560fa8
Fix no preview update when dir changed with same entry number hovered
4 yıl önce
Arun Prakash Jana
ce06bf15d6
Fix broken dir read from pipe
4 yıl önce
Arun Prakash Jana
4832fc5fe1
Drop fzy support
4 yıl önce
Todd Yamakawa
c8ecf06c51
Add a bookmarks plugin that supports names ( #558 )
Co-authored-by: Todd Yamakawa <todd.yamakawa@arm.com>
4 yıl önce
Arun Prakash Jana
bf078c0a8a
Update docs
4 yıl önce
Arun Prakash Jana
8568cd6770
Change requires to dependencies
4 yıl önce
Arun Prakash Jana
cfbb8f2117
Uniform plugins
4 yıl önce
lvgx
f438ddc28c
preview-tui: fix tmux behaviour, del refs to nuke ( #559 )
As reported by @toddyamakawa
4 yıl önce
Léo Villeveygoux
5b34d0dbe7
Prevent open FIFO prom leaking to subprocess
This fix previews window staying open after nnn exits, because they
inherited open FIFO (in write mode) from parent nnn process, and never
close it.
4 yıl önce
Arun Prakash Jana
2ea3ce552a
Shorten column width
4 yıl önce
lvgx
ba51b36931
Add a tmux/xterm based text previewer plugin ( #557 )
Uses `NNN_FIFO`, minimal dependencies.
Co-authored-by: Todd Yamakawa <todd.yamakawa@arm.com>
Co-authored-by: Todd Yamakawa <todd.yamakawa@arm.com>
4 yıl önce
Arun Prakash Jana
c360f5c908
which prints to screen
4 yıl önce
Arun Prakash Jana
33c4b1e7a2
Update docs
4 yıl önce
Arun Prakash Jana
97df7df297
Minor previewer plugin update, docs update
4 yıl önce
lvgx
f47700a609
Add a tabbed/xembed based file previewer plugin ( #552 )
* Add a tabbed/xembed based file previewer plugin
This plugin is written in bash, because job control is not well
specified in POSIX sh (`jobs` can return anything).
We use `tabbed` [1] as a xembed [2] host, to have a single window
owning each previewer window.
Uses mpv, sxiv, zathura, and the nuke plugin.
[1]: http://tools.suckless.org/tabbed/
[2]: https://specifications.freedesktop.org/xembed-spec/xembed-spec-latest.html
* tabbed-preview: prevent focus steal with xdotool
* preview-tabbed: tabs->4 spaces
* preview-tabbed: add focus prevention timeout
4 yıl önce
Arun Prakash Jana
4c18f22587
Fix double free when starting in list mode
4 yıl önce
Arun Prakash Jana
a563c1a553
Update docs
4 yıl önce
0xACE
65da1c1941
Double click only works on same item ( #555 )
This patch disables accidental triggering of double clicking when you
are just single clicking on multiple objects fast.
4 yıl önce
0xACE
c9f0e279af
SEL_FIRST now displays the correct message ( #556 )
A bit scary when you get prompted to remove a file but you wanted to
select a file.
I also made sure all strings are correctly ordered.
4 yıl önce
Arun Prakash Jana
6ee257920d
Fix context range check
4 yıl önce
Arun Prakash Jana
a950510342
Update docs
4 yıl önce
Arun Prakash Jana
69e132e36d
Update docs
4 yıl önce
lvgx
86e579799b
Add an option to print hovered files to a FIFO ( #548 )
* Add an option to print hovered files to a FIFO
This adds an env variable, `NNN_FIFO`, that can be set to a path that
`nnn` will open/create as a FIFO, and where every hovered file's path is
printed. This allows creating external perview/quick open plugins, ...
It can be compiled out with the make variable `O_NOFIFO`.
* Check filename ptr instead of full path (for FIFO)
* Add documentation to use NNN_FIFO in plugins
* Fix path sent to FIFO in empty dirs
4 yıl önce
Arun Prakash Jana
b5de18c28f
Use const type
4 yıl önce
Arun Prakash Jana
625c8d11f4
Refactor move_cursor()
4 yıl önce