Arun Prakash Jana
7718936737
Block data type
2020-05-10 02:18:02 +05:30
Arun Prakash Jana
d71379e5b6
Minor doc update
2020-05-08 01:08:42 +05:30
lvgx
fcab64263e
preview-tui: ensure 1st hovered file is previewed ( #561 )
2020-05-06 22:55:14 +05:30
lvgx
11c9648774
getplugs: add "master" version support ( #560 )
...
Pass "master" as first argument to the script.
2020-05-06 22:36:19 +05:30
Arun Prakash Jana
900b37c56c
Mention tmux version required
2020-05-06 20:49:21 +05:30
Arun Prakash Jana
4832fc5fe1
Drop fzy support
2020-05-06 18:41:01 +05:30
Todd Yamakawa
c8ecf06c51
Add a bookmarks plugin that supports names ( #558 )
...
Co-authored-by: Todd Yamakawa <todd.yamakawa@arm.com>
2020-05-06 17:24:21 +05:30
Arun Prakash Jana
bf078c0a8a
Update docs
2020-05-06 15:02:50 +05:30
Arun Prakash Jana
8568cd6770
Change requires to dependencies
2020-05-06 10:59:57 +05:30
Arun Prakash Jana
cfbb8f2117
Uniform plugins
2020-05-06 10:42:50 +05:30
lvgx
f438ddc28c
preview-tui: fix tmux behaviour, del refs to nuke ( #559 )
...
As reported by @toddyamakawa
2020-05-06 09:54:31 +05:30
Arun Prakash Jana
2ea3ce552a
Shorten column width
2020-05-06 04:47:35 +05:30
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>
2020-05-06 04:38:10 +05:30
Arun Prakash Jana
c360f5c908
which prints to screen
2020-05-06 04:36:26 +05:30
Arun Prakash Jana
97df7df297
Minor previewer plugin update, docs update
2020-05-06 01:03:10 +05:30
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
2020-05-06 00:28:57 +05:30
Arun Prakash Jana
a563c1a553
Update docs
2020-05-05 23:09:24 +05:30
Arun Prakash Jana
6ee257920d
Fix context range check
2020-05-05 17:14:42 +05:30
Arun Prakash Jana
a950510342
Update docs
2020-05-04 20:17:40 +05:30
Arun Prakash Jana
69e132e36d
Update docs
2020-05-04 09:50:31 +05:30
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
2020-05-04 09:35:13 +05:30
Arun Prakash Jana
625c8d11f4
Refactor move_cursor()
2020-05-04 06:17:38 +05:30
Arun Prakash Jana
92f8fe14f2
Bind getplugs to installed version
2020-05-03 20:28:16 +05:30
Arun Prakash Jana
af71d470f5
Plugin finder: run custom find/fd/grep/rg/fzf and list
2020-05-03 19:03:42 +05:30
Arun Prakash Jana
ebb6f153b5
Context code '+' to create context smartly
2020-05-03 16:25:59 +05:30
Arun Prakash Jana
eee5057da5
Plugin mimelist: support reading file list from (cmd as) plugin
2020-05-03 14:55:33 +05:30
step
49eecd7684
Support $_Z_DATA environment variable ( #545 )
...
Support `$_Z_DATA` environment variable per z's documentation dcd5541e7d/z.1 (L78)
.
`$_Z_DATA` allows changing the default location of the z database file.
2020-05-01 15:06:19 +05:30
Arun Prakash Jana
da91228bba
Randomize mocp
2020-04-27 08:35:43 +05:30
Arun Prakash Jana
187750556c
Let mocp shuffle
2020-04-27 08:23:22 +05:30
Arun Prakash Jana
35fb89b972
Randomize mocp playlist
2020-04-27 01:17:03 +05:30
Arun Prakash Jana
eec0e6d18e
Various plugin improvements
2020-04-27 00:05:40 +05:30
KlzXS
babf379a74
Optimize dups ( #539 )
2020-04-26 22:25:03 +05:30
Arun Prakash Jana
bc572df55a
NNN_SEL: custom selection file
2020-04-24 18:12:18 +05:30
lvgx
7dab9d0d86
Add nbak plugin to backup all nnn config ( #528 )
...
* Add nbak plugin to backup all nnn config
* nbak: check cd, quote env
* nbak: print backup file name
* nbak: add --show option, to show shell config
* nbak: fix shellcheck warning
'type' is POSIX complient, AND we check that we're actually running
bash, but shellcheck can't understand this...
Then '-o' is POSIX complient too, but shellcheck thinks it's "not well defined".
* nbak: variable renames, archive hierarchy changes
* nbak: fix variable expansion
* nbak: remove --show option
* nbak: call interactive bash/zsh to get fun/aliases
* Add nbak entry in plugins/README.md
* nbak: change archive hierarchy
* plugins/README.md: make nbak description shorter
2020-04-23 23:05:58 +05:30
KlzXS
00148360e4
Plugin improvements ( #531 )
...
* Added padding for numbers in .nmv
* Add skim as an option in fzopen
* Remove unnecessary eval
Thanks @leovilok!
Co-Authored-By: lvgx <l@vgx.fr>
* Added note about whitespace
Co-authored-by: lvgx <l@vgx.fr>
2020-04-20 22:39:30 +05:30
Krisan Alifari
d549ae7486
Add nvim as a diff tool for getplugs plugin ( #527 )
...
* Add nvim as a diff tool for getplugs plugin
* Comment out `is_cmd_exists()`
* Add nvim diff tool for diffs plugin
* Add $EDITOR to nuke plugin for editing/reading text file format
* Modify diff command to fix CircleCI failures
* Fix getplugs prompt
* Allow nuke to use custom $PAGER
2020-04-20 22:19:35 +05:30
lvgx
7cc46510e3
nuke: add lowdown as alternative markdown viewer ( #524 )
...
See https://kristaps.bsd.lv/lowdown/
2020-04-17 08:11:08 +05:30
Krisan Alifari
aa7f1dabdd
Support $FZF_DEFAULT_COMMAND on fzopen plugin ( #514 )
2020-04-12 22:39:24 +05:30
Arun Prakash Jana
e5ba4f69bb
Update docs
2020-04-09 11:55:44 +05:30
Nick Waywood
415a6edd4a
Added support for fzy ( #505 )
...
* Added fzfz plugin
* Fixed shellcheck errors
* Fixed copy/paste error
* Added support for fzy, also renamed plugin since it's not specific to fzf anymore
* Refactored code
* Clean spillovers (jarun)
2020-04-02 10:58:54 +05:30
Nick Waywood
553f183919
Added fzfz plugin ( #502 )
...
* Added fzfz plugin
* Fixed shellcheck errors
* Fixed copy/paste error
2020-04-01 18:05:52 +05:30
Arun Prakash Jana
c01857cddb
Fix fzcd at /, minot refactor
2020-03-31 22:26:20 +05:30
Arun Prakash Jana
eea1b5da7d
Update docs
2020-03-31 01:59:30 +05:30
Arun Prakash Jana
54d2580799
Add fortune to help
2020-03-30 09:09:11 +05:30
KlzXS
aab90bf515
Add verbose option ( #497 )
2020-03-21 00:58:42 +05:30
Arun Prakash Jana
b8a973a91a
Update plugins to support some env vars
2020-03-16 07:13:35 +05:30
Arun Prakash Jana
ea2de804f8
batch rename: check dep, handle invalid input
2020-03-15 20:26:53 +05:30
Arun Prakash Jana
03e6d7d553
Adapt PR #495
2020-03-15 19:52:02 +05:30
KlzXS
c215c5de80
Convert batchrename to bash and rename it ( #495 )
2020-03-15 19:49:05 +05:30
Arun Prakash Jana
4e58ad318c
Update plugin docs
2020-03-14 20:37:04 +05:30