summaryrefslogtreecommitdiff
path: root/yazi/plugins/glow.yazi
diff options
context:
space:
mode:
authorsubh <subh@subh.space>2026-04-03 14:47:03 +0530
committersubh <subh@subh.space>2026-04-03 14:47:03 +0530
commit314d760de1922128124f2a9be0494fd4f6f7effb (patch)
tree3f4bb374fc89be2b1cd4e2a0a21ae17d4bf83452 /yazi/plugins/glow.yazi
parent0203dd4b8d45c663356f797c11be17fdec6f22f2 (diff)
new music bar, auto usb mounting and more
Diffstat (limited to 'yazi/plugins/glow.yazi')
-rw-r--r--yazi/plugins/glow.yazi/LICENSE7
-rw-r--r--yazi/plugins/glow.yazi/README.md33
-rw-r--r--yazi/plugins/glow.yazi/main.lua64
3 files changed, 104 insertions, 0 deletions
diff --git a/yazi/plugins/glow.yazi/LICENSE b/yazi/plugins/glow.yazi/LICENSE
new file mode 100644
index 0000000..de882e5
--- /dev/null
+++ b/yazi/plugins/glow.yazi/LICENSE
@@ -0,0 +1,7 @@
+Copyright © 2024 Reledia <reledia@prontonmail.com>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/yazi/plugins/glow.yazi/README.md b/yazi/plugins/glow.yazi/README.md
new file mode 100644
index 0000000..5e12e0f
--- /dev/null
+++ b/yazi/plugins/glow.yazi/README.md
@@ -0,0 +1,33 @@
+# glow.yazi
+
+>[!WARNING]
+>This plugin is now deprecated with the release of [Piper](https://github.com/yazi-rs/plugins/tree/main/piper.yazi#examples)
+
+Plugin for [Yazi](https://github.com/sxyazi/yazi) to preview markdown files with [glow](https://github.com/charmbracelet/glow). To install, run the below mentioned command:
+
+```bash
+ya pack -a Reledia/glow
+```
+
+then include it in your `yazi.toml` to use:
+
+```toml
+[plugin]
+prepend_previewers = [
+ { name = "*.md", run = "glow" },
+]
+```
+
+Make sure you have [glow](https://github.com/charmbracelet/glow) installed, and can be found in `PATH`.
+
+## Feature
+
++ You can modify line wrap in `main.lua`, the current value is 55.
++ You can press `ctrl+e` to scroll up and `ctrl+y` to scroll down the readme file in preview panel in yazi: (add this to `keymap.toml`)
+```toml
+prepend_keymap = [
+ # glow.yazi
+ { on = ["<C-e>"], run = "seek 5" },
+ { on = ["<C-y>"], run = "seek -5" },
+]
+```
diff --git a/yazi/plugins/glow.yazi/main.lua b/yazi/plugins/glow.yazi/main.lua
new file mode 100644
index 0000000..8883feb
--- /dev/null
+++ b/yazi/plugins/glow.yazi/main.lua
@@ -0,0 +1,64 @@
+local M = {}
+
+function M:peek(job)
+ -- Set a fixed width of 50 characters for the preview
+ local preview_width = 55
+
+ local child = Command("glow")
+ :args({
+ "--style",
+ "dark",
+ "--width",
+ tostring(preview_width), -- Use fixed width instead of job.area.w
+ tostring(job.file.url),
+ })
+ :env("CLICOLOR_FORCE", "1")
+ :stdout(Command.PIPED)
+ :stderr(Command.PIPED)
+ :spawn()
+
+ if not child then
+ return require("code").peek(job)
+ end
+
+ local limit = job.area.h
+ local i, lines = 0, ""
+ repeat
+ local next, event = child:read_line()
+ if event == 1 then
+ return require("code").peek(job)
+ elseif event ~= 0 then
+ break
+ end
+
+ i = i + 1
+ if i > job.skip then
+ lines = lines .. next
+ end
+ until i >= job.skip + limit
+
+ child:start_kill()
+ if job.skip > 0 and i < job.skip + limit then
+ ya.mgr_emit("peek", {
+ tostring(math.max(0, i - limit)),
+ only_if = job.file.url,
+ upper_bound = true
+ })
+ else
+ lines = lines:gsub("\t", string.rep(" ", rt.preview.tab_size))
+ ya.preview_widgets(job, { ui.Text.parse(lines):area(job.area) })
+ end
+end
+
+function M:seek(job)
+ local h = cx.active.current.hovered
+ if not h or h.url ~= job.file.url then
+ return
+ end
+ ya.mgr_emit('peek', {
+ math.max(0, cx.active.preview.skip + job.units),
+ only_if = job.file.url,
+ })
+end
+
+return M