diff options
author | KlzXS <azszwymmvqdi@yahoo.com> | 2020-04-20 19:09:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 22:39:30 +0530 |
commit | 00148360e4452ae24a43a15b0833c49b7b4e4347 (patch) | |
tree | dbce8d0f214c8666531c014545000634862c0085 /plugins/fzopen | |
parent | d549ae748626e648eeca7926569598f8d2653714 (diff) | |
download | nnn-00148360e4452ae24a43a15b0833c49b7b4e4347.tar.gz |
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>
Diffstat (limited to 'plugins/fzopen')
-rwxr-xr-x | plugins/fzopen | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/fzopen b/plugins/fzopen index 068db1e..9f5ff05 100755 --- a/plugins/fzopen +++ b/plugins/fzopen @@ -17,6 +17,8 @@ if which fzf >/dev/null 2>&1; then # entry=$(find . -type f 2>/dev/null | fzf --delimiter / --with-nth=-1 --tiebreak=begin --info=hidden) elif which fzy >/dev/null 2>&1; then entry=$(find . -type f 2>/dev/null | fzy) +elif which sk >/dev/null 2>&1; then + entry=$(find . -type f 2>/dev/null | sk) else exit 1 fi |