Arun Prakash Jana
10a43a4fbb
Add Live Previews asciicast
...
Thanks @Kabouik!
2020-06-04 09:33:48 +05:30
Arun Prakash Jana
63e90c573b
Move Live Preview usage notes to Wiki page
2020-06-03 09:15:00 +05:30
Arun Prakash Jana
1dbbc45c78
Key | to send file path to FIFO
2020-06-02 16:50:06 +05:30
Arun Prakash Jana
52697e76d5
Workaround #621 : preview is updated on redraw (^L)
2020-06-01 13:36:02 +05:30
Arun Prakash Jana
f5b5cf5fd7
Document non-repeat-refresh of file under preview
2020-06-01 01:40:02 +05:30
Arun Prakash Jana
9de3a3c2ec
Update docs
2020-05-31 10:20:57 +05:30
Arun Prakash Jana
04f9698d86
Retire ^S as select plugin
2020-05-30 22:02:55 +05:30
lvgx
b1027150ed
Add -a option to generate a temporary NNN_FIFO ( #588 )
...
* Add -a option to generate a temporary NNN_FIFO
* Add documentation for -a option
* plugins/README.md: promote the use of -a
This obsoletes the global FIFO unlink trick, so I remove mentions of it.
@jarun update:
Polish -a
2020-05-23 17:40:51 +05:30
Arun Prakash Jana
54d9a6e4f9
Update docs
2020-05-17 17:54:10 +05:30
lvgx
a17ef6699d
Add a preview-kitty plugin ( #577 )
2020-05-17 17:38:29 +05:30
Arun Prakash Jana
0f01bd7d3a
Fix #573 : update docs
2020-05-15 00:13:55 +05:30
Arun Prakash Jana
23770ed049
Update docs
2020-05-13 12:55:46 +05:30
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
2020-05-13 12:29:47 +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
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
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
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
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
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
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
Arun Prakash Jana
03e6d7d553
Adapt PR #495
2020-03-15 19:52:02 +05:30
Arun Prakash Jana
4e58ad318c
Update plugin docs
2020-03-14 20:37:04 +05:30
lvgx
d4b0ffa75e
Add x2sel plugin (reverse .cbcp) ( #494 )
...
This plugin is based on .cbcp and does basically the reverse operation.
It copies system clipboard newline-separated file list to selection.
2020-03-14 10:15:56 +05:30
Arun Prakash Jana
f527dd1c6a
Integrate batch renamer plugin
2020-03-11 17:52:38 +05:30
Arun Prakash Jana
3a9ddbd90f
Add batchrename to readme, minor Makefile change
2020-03-11 09:07:20 +05:30
Arun Prakash Jana
88167511f6
Unlimited bookmarks and plugin keys
2020-02-28 19:23:57 +05:30
Arun Prakash Jana
e73ec218a9
Plugin mp3conv to extract audio from media as mp3
2020-02-23 13:09:24 +05:30
Arun Prakash Jana
9f1b51b004
Allow choosing the same context in plugin helper
2020-02-20 07:54:32 +05:30
Arun Prakash Jana
f7f53bbd6b
Update docs
2020-02-20 00:59:06 +05:30
Arun Prakash Jana
04d9b667ed
Remove redundant example
2020-02-02 13:47:42 +05:30
Arun Prakash Jana
6aed714347
Run GUI app as plugin
2020-01-30 23:41:19 +05:30
Siddharth Dushantha
1dd691d20b
fixed a formating error ( #444 )
...
Some normal text was indent a little, which caused to to become a code
2020-01-18 14:24:48 +05:30
Arun Prakash Jana
7086df5c78
Update docs
2020-01-16 22:49:16 +05:30
Arun Prakash Jana
2c6fb0eefc
Use shorter lines in man page
2020-01-15 11:09:51 +05:30
Arun Prakash Jana
73a2919b7e
Prepare for release v2.9
2020-01-15 09:42:23 +05:30
Arun Prakash Jana
1b252b6ecb
Keybind changes
2020-01-14 21:20:57 +05:30
Arun Prakash Jana
8ebedab3f6
Fix doc
2020-01-14 04:10:11 +05:30
Arun Prakash Jana
526330bb8b
Unify plugin keys
2020-01-13 21:09:40 +05:30
Arun Prakash Jana
bb3d79ce21
Go to top when last saved filter is applied
2020-01-12 02:46:19 +05:30
Arun Prakash Jana
0492fa385d
Update docs
2020-01-09 01:26:23 +05:30
Arun Prakash Jana
f92658f31e
Add examples of useful commands to run as plugin
2020-01-08 23:20:46 +05:30
Arun Prakash Jana
23ef45ee49
Update docs
2020-01-07 22:12:39 +05:30
Arun Prakash Jana
d43abec4bc
Merge plugins pastebin and upload
2020-01-03 07:34:59 +05:30
Arun Prakash Jana
045ad3da75
Merge plugins imgsxiv and imgviu
2020-01-03 00:27:28 +05:30
Arun Prakash Jana
69377bbd89
Remove plugin notes, update docs to run cmd as plugin
2020-01-03 00:04:31 +05:30
Arun Prakash Jana
c92c5c7b15
Support toggle exe
2020-01-02 23:36:08 +05:30
Arun Prakash Jana
e1c91e1aef
Plugin rename
2020-01-02 05:11:00 +05:30
Arun Prakash Jana
ff72917e72
Plugin rename
2020-01-02 04:15:17 +05:30
Arun Prakash Jana
f90c37cd5e
Automagically handle archives
2019-12-29 23:21:18 +05:30
Arun Prakash Jana
146da5911d
Code refactor
2019-12-29 17:58:48 +05:30
Arun Prakash Jana
f480de0065
Use file.io to ipload files
2019-12-24 11:11:39 +05:30
Arun Prakash Jana
0bc5cdbf26
Update docs
2019-12-22 08:41:38 +05:30
Arun Prakash Jana
404001a428
Update plugin docs
2019-12-21 06:04:04 +05:30
Arun Prakash Jana
f25f062537
Mechanism to skip dir refresh after running plugin
2019-12-20 12:05:25 +05:30
Arun Prakash Jana
6b5bb16b46
Minor improvements
...
- reduce 4 spaces between help columns as it's too wide for handhelds
- support `]` as prompt in nav-as-you-type-mode when filter is empty
- update plugin docs
2019-12-18 21:53:18 +05:30
Arun Prakash Jana
fb2c548e86
User control to disable prompt after run cmd as plugin
2019-12-17 20:57:29 +05:30
Arun Prakash Jana
5c76187b61
Update docs
2019-12-16 05:55:15 +05:30
Arun Prakash Jana
a86150f71a
Reformat help, remove redundant plugin key
2019-12-11 19:26:13 +05:30
Arun Prakash Jana
ef09f42720
PR #399 : add autojump plugin
2019-12-10 22:30:35 +05:30
Arun Prakash Jana
885cfd4734
Support both fzf and fzy
2019-12-09 18:36:48 +05:30
Arun Prakash Jana
d5512462af
Move nlaunch to plugins as launch
2019-12-09 00:34:53 +05:30
Arun Prakash Jana
77ebfff98b
Rename opener nplay to nuke
2019-12-08 20:27:06 +05:30
Arun Prakash Jana
5708585c3b
Add nplay as a plugin
2019-12-08 08:27:53 +05:30
Arun Prakash Jana
add789c002
Use common construct for utility names
2019-12-03 21:11:06 +05:30
Arun Prakash Jana
0acd18f989
Minor plugin fixes
2019-12-03 18:52:40 +05:30
José Luis Neder
189042d2d9
Plugin renamer ( #393 )
...
This plugin is an alternative to the native batch rename interface in
nnn. qmv from renameutils and vidir from moreutils allow to rename
files without fear of replacing existing files.
2019-12-03 18:30:44 +05:30
Arun Prakash Jana
f80563e16a
Update docs
2019-12-03 06:56:43 +05:30
Arun Prakash Jana
5cd9794102
Remove redundant assignment
2019-12-02 22:24:06 +05:30
Arun Prakash Jana
5d0af863b5
Set hovered and file as
2019-11-24 02:13:27 +05:30
Arun Prakash Jana
594d645e25
Rename plugins, group related ones
2019-11-22 17:51:13 +05:30
Arun Prakash Jana
085bda0330
Integrate similar plugins, diff should begin at start of file
2019-11-22 13:50:00 +05:30
Arun Prakash Jana
ee2dcb1de7
Re-order plugin table
2019-11-21 22:14:25 +05:30
Arun Prakash Jana
5b7448bac9
Various plugin fixes
...
1. getplugs should work even if nnn is not run
2. Remove redundant ./ prefix
3. Update plugin docs
2019-11-20 19:19:09 +05:30
Arun Prakash Jana
9729b1f5a6
Refresh dirs on disruptive chnages, update sxiv plugin to browse and rename
2019-11-19 21:01:59 +05:30
Arun Prakash Jana
f7fa1ffc8e
Update plugin docs
2019-11-18 00:14:04 +05:30
Arun Prakash Jana
0620b1dfb5
Plugin fzhist
2019-11-17 19:14:30 +05:30
Arun Prakash Jana
7d0be597ad
Rename fzy-open to fzopen
2019-11-17 13:08:26 +05:30
Arun Prakash Jana
5b8b9eaa92
Add image of plugin gutenread in action
2019-11-17 10:17:38 +05:30
Arun Prakash Jana
f8b8c67bee
Update docs
2019-11-16 11:43:38 +05:30
Arun Prakash Jana
cf987fa988
Plugin treeview to show tree o/p with perms and size
2019-11-16 11:22:34 +05:30
Arun Prakash Jana
e82f6d02cd
Plugin extoggle to toggle executable status
2019-11-16 10:36:39 +05:30
Arun Prakash Jana
2b4bd35ba6
Simplify running commands
2019-11-16 07:20:18 +05:30
Arun Prakash Jana
baaf3ede2a
Update docs
2019-11-02 20:46:50 +05:30
Arun Prakash Jana
aedb9c2753
Update drag and drop plugin
2019-11-02 06:56:34 +05:30
Arun Prakash Jana
013dad1186
plugin pskill
2019-11-01 21:54:51 +05:30
Arun Prakash Jana
cf4ad22676
Add complete audio conversion tip
2019-10-25 07:50:54 +05:30
Arun Prakash Jana
b987931f47
Do not pass path to commands
2019-10-24 20:25:07 +05:30
Arun Prakash Jana
8c096dad28
Update docs
2019-10-24 15:10:13 +05:30
Arun Prakash Jana
5bebd4ac67
Extend plugin mechanism to arbitrary commands
2019-10-24 12:44:01 +05:30
Anna Arad
b81affffa1
Fix code examples in plugins README
2019-10-23 16:55:57 +03:00
Anna Arad
9afd7cf3bf
Implement plugins control of nnn + plugins ( #364 )
...
* Implement plugins control of nnn + plugins
* Refactor plugins control code and fix getplugs to recognize hidden files
* Fix bug when going to dir on non-current context from plugin
* Fix some plugins to work on openbsd and freebsd
* Renamings
* Switch to -R flag in cp instead of -r; BSDs complain
* Change braces of function location
* Rewrite plugin creation in README and add new plugins to the table
* Update the fzcd script to include fzy or fzf
* Change plugin name resolve-link-dir -> lncd
* Fixing plugins README table
* Remove some cd plugins but add them as examples to plugins README
2019-10-23 15:34:12 +05:30
Anna Arad
49bee69490
suedit plugin ( #359 )
2019-10-14 06:36:11 +05:30
Arun Prakash Jana
087380968d
Pass path as second argument
2019-10-13 17:28:02 +05:30
Arun Prakash Jana
19ea710e08
gutenread: support epub
2019-10-13 12:06:32 +05:30
Arun Prakash Jana
2f413f8059
Plugin to browse, download, read from Project Gutenberg
2019-10-13 01:24:02 +05:30
0xACE
3eb0a38c5e
Added 2 plugins for drag and drop support ( #352 )
...
* Added 2 plugins for drag and drop support
These scripts uses https://github.com/mwh/dragon
and curl.
It allows nnn to drag and drop files either to other programs, or to
itself.
* added link to dependency and spelling
* added drag/drop-file scripts to readme table
2019-10-12 07:55:30 +05:30
Arun Prakash Jana
57298b7fcc
Use ix.io paste service
2019-10-04 18:45:21 +05:30
Arun Prakash Jana
66713730f0
Add plugin uidgid
2019-10-03 00:16:44 +05:30
Arun Prakash Jana
f75620e95b
Update plugin viuimg
2019-10-01 07:35:54 +05:30
Arun Prakash Jana
727fad3b32
Add image
2019-10-01 04:01:02 +05:30
Arun Prakash Jana
1e7cc1f369
Update plugin docs
2019-09-27 22:21:04 +05:30
Arun Prakash Jana
2c3b5e2f78
Add command to download plugins
2019-09-27 21:13:01 +05:30
Arun Prakash Jana
d7ce06b10b
Add plugin to take quick notes
2019-09-26 19:56:43 +05:30
Arun Prakash Jana
cea542b515
Update docs
2019-09-06 20:03:48 +05:30
Arun Prakash Jana
3f40980dd0
Plugin oldbigfile: find large files by access time
2019-08-30 20:01:13 +05:30
Arun Prakash Jana
94c3af873c
Implement mediainfo as a plugin
2019-08-28 00:02:33 +05:30
Arun Prakash Jana
9b6ffeef5d
Use MOC in plugin boom
2019-08-24 22:35:04 +05:30
Arun Prakash Jana
d8fe4b3bb6
Plugin dups: find duplicate files in dir
2019-08-24 21:23:52 +05:30
Arun Prakash Jana
9feb5ce651
Merge fzy-edit into fzy-open
2019-08-23 08:30:48 +05:30
Arun Prakash Jana
b9530a5ce0
Plugin organize
2019-08-19 23:01:41 +05:30
Arun Prakash Jana
bf13243830
Update docs
2019-08-19 08:42:24 +05:30
Arun Prakash Jana
9282eff925
Update plugin docs
2019-08-15 11:11:23 +05:30
Arun Prakash Jana
7575a3e031
Plugin vidthumb
2019-08-15 10:06:41 +05:30
Arun Prakash Jana
4ab13b1b34
Plugin moclyrics
2019-08-15 09:15:03 +05:30
Arun Prakash Jana
02b3273233
Use key-plugin pairs for running plugins
2019-08-14 21:58:18 +05:30
Arun Prakash Jana
775742150c
Custom keybinds to run plugins directly
2019-08-14 01:38:30 +05:30
Arun Prakash Jana
ca714eac90
Show image thumbnails with lsix
2019-07-12 00:16:07 +05:30
Arun Prakash Jana
a3019418b1
Update docs
2019-06-26 14:39:47 +05:30
Arun Prakash Jana
2934db3482
Pretty table
2019-06-23 09:18:35 +05:30
Arun Prakash Jana
619ac17004
Add text2speech plugin
2019-06-23 01:43:52 +05:30
Arun Prakash Jana
42a5479fa8
Add an mp3 ringtone generator
2019-06-21 22:36:34 +05:30
Arun Prakash Jana
c07288e585
The table is sorted
2019-06-20 20:57:19 +05:30
Arun Prakash Jana
2d1d176160
Fix #288
2019-06-20 19:17:00 +05:30
ath3
2dc3da62a2
Refactored splitjoin and ndiff plugins, made them POSIX compliant
2019-06-20 10:45:24 +02:00
ath3
4757873d3a
Added md5sum plugin
2019-06-19 04:06:19 +02:00
Arun Prakash Jana
b0bad47a71
Update plugins
2019-06-07 21:01:08 +05:30
Arun Prakash Jana
a96ad1dab0
Add plugin to split or join files
2019-06-06 23:27:57 +05:30
Arun Prakash Jana
d970a7416f
getplugs: backup earlier plugins
2019-06-05 17:52:33 +05:30
Arun Prakash Jana
edf587a48f
Add plugin to play music in MOC
2019-06-03 18:26:53 +05:30
Arun Prakash Jana
9711297362
Update docs
2019-06-03 11:42:41 +05:30
Arun Prakash Jana
650f92bf34
Add plugin to view image and browse image dir
2019-06-02 21:37:42 +05:30
Arun Prakash Jana
9ba3cb3e9b
Update plugins, add mutool to view PDF
2019-06-01 00:34:07 +05:30
Arun Prakash Jana
d6fbe87768
Support directory diff
2019-05-26 10:27:09 +05:30
Arun Prakash Jana
658099bee0
ipinfo shows external IP address
2019-05-24 23:14:19 +05:30