Remove plugin notes, update docs to run cmd as plugin

This commit is contained in:
Arun Prakash Jana 2020-01-03 00:04:31 +05:30
parent c92c5c7b15
commit 69377bbd89
No known key found for this signature in database
GPG key ID: A75979F35C080412
2 changed files with 2 additions and 18 deletions

View file

@ -38,7 +38,6 @@ Plugins extend the capabilities of `nnn`. They are _executable_ scripts (or bina
| moclyrics | Show lyrics of the track playing in moc | sh | [ddgr](https://github.com/jarun/ddgr), [moc](http://moc.daper.net/) | | moclyrics | Show lyrics of the track playing in moc | sh | [ddgr](https://github.com/jarun/ddgr), [moc](http://moc.daper.net/) |
| mocplay | Append (and/or play) selection/dir/file in moc | sh | [moc](http://moc.daper.net/) | | mocplay | Append (and/or play) selection/dir/file in moc | sh | [moc](http://moc.daper.net/) |
| nmount | Toggle mount status of a device as normal user | sh | pmount, udisks2 | | nmount | Toggle mount status of a device as normal user | sh | pmount, udisks2 |
| notes | Open a quick notes file/dir in `$EDITOR` | sh | - |
| nuke | Sample file opener (CLI-only by default) | sh | various | | nuke | Sample file opener (CLI-only by default) | sh | various |
| oldbigfile | List large files by access time | sh | find, sort | | oldbigfile | List large files by access time | sh | find, sort |
| organize | Auto-organize files in directories by file type | sh | file | | organize | Auto-organize files in directories by file type | sh | file |
@ -98,9 +97,9 @@ Now <kbd>;x</kbd> can be used to make a file executable, <kbd>;g</kbd> can be us
`nnn` waits for user confirmation (the prompt `Press Enter to continue`) after it executes a command as plugin (unlike plugins which can add a `read` to wait). To skip this, add a `*` after the command. For example: `nnn` waits for user confirmation (the prompt `Press Enter to continue`) after it executes a command as plugin (unlike plugins which can add a `read` to wait). To skip this, add a `*` after the command. For example:
export NNN_PLUG='s:_smplayer $nnn*' export NNN_PLUG='s:_smplayer $nnn*;n:-_vim /home/vaio/Dropbox/Public/synced_note*'
Now there will be no prompt after <kbd>;s</kbd>. Now there will be no prompt after <kbd>;s</kbd> and <kbd>;n</kbd>.
Notes: Notes:

View file

@ -1,15 +0,0 @@
#!/usr/bin/env sh
# Description: Open a quick notes file or directory in $EDITOR
#
# Details: Set the variable NOTE to the path to your quick notes file
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
NOTE=
# NOTE=~/Dropbox/Notes/synced_note
if [ ! -z "$NOTE" ]; then
$EDITOR "$NOTE"
fi