浏览代码

nuke: open log files in vi

master
Arun Prakash Jana 4 年前
父节点
当前提交
f6e814e364
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 7 次插入0 次删除
  1. +7
    -0
      plugins/nuke

+ 7
- 0
plugins/nuke 查看文件

@@ -44,6 +44,7 @@
# pdf: zathura (GUI), pdftotext, mutool, exiftool
# audio: mocplay (nnn plugin using MOC), mpv, mediainfo, exiftool
# avi|mkv|mp4: smplayer, mpv (GUI), ffmpegthumbnailer, mediainfo, exiftool
# log: vi
# torrent: rtorrent, transmission-show
# odt|ods|odp|sxw: odt2txt
# md: glow (https://github.com/charmbracelet/glow)
@@ -178,6 +179,11 @@ handle_extension() {
handle_video
exit 1;;

## Log files
log)
vi "${FPATH}"
exit 0;;

## BitTorrent
torrent)
if which rtorrent >/dev/null 2>&1; then
@@ -220,6 +226,7 @@ handle_extension() {
exit 0
fi
;;

## JSON
json)
if which jq >/dev/null 2>&1; then


正在加载...
取消
保存