aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/notes
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-01-03 00:04:31 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-01-03 00:04:31 +0530
commit69377bbd89ba1dd6a3213e43d94d91d9c8914036 (patch)
treeec7774bea52e904de78b0f27da485c24b899c8e4 /plugins/notes
parentc92c5c7b1576dd3ab13c055ed399ad0f09d74bbc (diff)
downloadnnn-69377bbd89ba1dd6a3213e43d94d91d9c8914036.tar.gz
Remove plugin notes, update docs to run cmd as plugin
Diffstat (limited to 'plugins/notes')
-rwxr-xr-xplugins/notes15
1 files changed, 0 insertions, 15 deletions
diff --git a/plugins/notes b/plugins/notes
deleted file mode 100755
index 02b9a0f..0000000
--- a/plugins/notes
+++ /dev/null
@@ -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