ソースを参照

nuke: add glow to preview markdown

master
Arun Prakash Jana 5年前
コミット
d224016011
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更10行の追加1行の削除
  1. +10
    -1
      plugins/nuke

+ 10
- 1
plugins/nuke ファイルの表示

@@ -45,6 +45,7 @@
# audio: mocplay (nnn plugin using MOC), mpv, mediainfo, exiftool
# torrent: rtorrent, transmission-show
# odt|ods|odp|sxw: odt2txt
# md: glow (https://github.com/charmbracelet/glow)
# htm|html|xhtml: w3m, lynx, elinks
# json: jq, python (json.tool module)
# Multimedia by mime:
@@ -165,6 +166,14 @@ handle_extension() {
fi
exit 1;;

## Markdown
md)
if which glow >/dev/null 2>&1; then
glow -sdark "${FPATH}" | less -R
exit 0
fi
;;

## HTML
htm|html|xhtml)
## Preview as text conversion
@@ -375,7 +384,7 @@ handle_mime() {
## Text
text/* | */xml)
vi "${FPATH}"
exit 1;;
exit 0;;
## Syntax highlight
# if [[ "$( stat --printf='%s' -- "${FPATH}" )" -gt "${HIGHLIGHT_SIZE_MAX}" ]]; then
# exit 2


読み込み中…
キャンセル
保存