mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 11:51:27 +00:00
Plugin treeview to show tree o/p with perms and size
This commit is contained in:
parent
e82f6d02cd
commit
cf987fa988
|
@ -44,6 +44,7 @@ The currently available plugins are listed below.
|
||||||
| sxiv | sh | sxiv | View images in dir, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))|
|
| sxiv | sh | sxiv | View images in dir, set wallpaper, copy path ([config](https://wiki.archlinux.org/index.php/Sxiv#Assigning_keyboard_shortcuts))|
|
||||||
| thumb | sh | [lsix](https://github.com/hackerb9/lsix) | View thumbnail of an image or dir of images |
|
| thumb | sh | [lsix](https://github.com/hackerb9/lsix) | View thumbnail of an image or dir of images |
|
||||||
| transfer | sh | curl | Upload file to transfer.sh |
|
| transfer | sh | curl | Upload file to transfer.sh |
|
||||||
|
| treeview | sh | tree | Informative tree output in `$EDITOR` |
|
||||||
| uidgid | sh | ls, less | List user and group of all files in dir |
|
| uidgid | sh | ls, less | List user and group of all files in dir |
|
||||||
| upgrade | sh | curl | Upgrade nnn manually on Debian 9 Stretch |
|
| upgrade | sh | curl | Upgrade nnn manually on Debian 9 Stretch |
|
||||||
| vidthumb | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) | Show video thumbnails in terminal |
|
| vidthumb | sh | [ffmpegthumbnailer](https://github.com/dirkvdb/ffmpegthumbnailer),<br>[lsix](https://github.com/hackerb9/lsix) | Show video thumbnails in terminal |
|
||||||
|
|
8
plugins/treeview
Executable file
8
plugins/treeview
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
|
# Description: Show tree output in $EDITOR
|
||||||
|
#
|
||||||
|
# Shell: POSIX compliant
|
||||||
|
# Author: Arun Prakash Jana
|
||||||
|
|
||||||
|
tree -ps | $EDITOR -
|
Loading…
Reference in a new issue