AutoYADM commit: 2025-05-17 17:29:24

This commit is contained in:
Daniel Fichtinger 2025-05-17 17:29:24 -04:00
parent ef482dd506
commit 851e436fb1

View file

@ -0,0 +1,162 @@
#!/usr/bin/env fish
# hx-typ-zathura: easily preview your typst documents from Helix!
# This script will automatically find a pdf that matches your
# current Typst document and attempt to open it with Zathura.
# Optionally, it will quit Zathura when you close Helix, and
# uses typst watch to continuously compile the file.
# Run this script with --help for usage info!
# Author: Daniel Fichtinger <daniel@ficd.ca
# License: MIT
argparse q/quiet k/kill-on-exit w/watch h/help s/session -- $argv
if test (count $argv) -eq 0; or set -q _flag_h
echo "Helper script for opening Typst files from Helix in Zathura."\n
echo "Usage: (bind the following to a key)"
echo ':sh hx-typ-zathura.fish [opts] %{buffer_name}'\n
echo 'Example for config.toml:'
echo '[keys.normal.space.t]'
echo "p = ':sh /path/to/hx-typ-zathura.fish -k %{buffer_name}'"\n
echo "Options:"
echo "-q/--quiet: Don't \`echo\` on caught errors, return 1 instead."
echo "-k/--kill-on-exit: Kill Zathura when parent Helix process exits."
echo "-w/--watch: live preview mode"
echo "-h/--help: print this screen"\n
echo "Note:"
echo "To avoid spawning a large number of typst processes,"
echo "--watch is only effective if --kill-on-exit is also set."\n
echo 'Author: Daniel Fichtinger <daniel@ficd.ca>'
echo 'License: MIT'
return 0
end
# only return status 1 if -q not set
# (if return status != 0, helix will not
# display anything that was echoed to stdout!)
if set -q _flag_q
set ret 1
else
set ret 0
end
# only echo if -q not set
function qecho
if test "$ret" -ne 1
echo $argv[1]
end
end
# absolute path of %{buffer_name} file
set -g src_path (path resolve $argv[1])
# check if the user asked to kill zathura on helix exit
# or to watch the pdf
if set -q _flag_k || set -q _flag_w
if set -q _flag_k
set kill_parent
end
if set -q _flag_w
set typst_watch
end
if not set -q _flag_s
qecho "You must provide --session=<name> with --kill-on-exit or --watch."
return $ret
end
set session_name $_flag_s
set session_socket "$XDG_RUNTIME_DIR/kakoune/$session_name"
if not test -S "$session_socket"
qecho "Session $session_name not found!"
return $ret
end
end
function monitor_kak
set -l socket $argv[1]
set -l zathura_pid $argv[2]
set -l typst_pid $argv[3]
set -l dir (path dirname "$socket")
set -l file (path basename "$socket")
inotifywait -q -e delete,delete_self,moved_from --format '%f' "$dir" | while read filename
if test "$filename" = "$file"
kill $zathura_pid &> /dev/null
if test -n "$typst_pid"
kill $typst_pid &>/dev/null
end
break
end
end
end
# opens zathura, optionally watching for helix closing
function zopen --wraps zathura
set -f pdf_path $argv[1]
# this should be set if the user asked to kill
if set -q kill_parent
# create background sub-process
# otherwise helix will hang
begin
zathura "$pdf_path" &>/dev/null &
set zathura_pid $last_pid
if set -q typst_watch
typst watch "$src_path" "$pdf_path" &>/dev/null &
set -f typst_pid $last_pid
end
monitor_kak "$session_socket" "$zathura_pid" "$typst_pid" &
end &
else
# user didn't ask for kill, so open normally
zathura "$pdf_path" &>/dev/null &
end
true
end
# try to find the target pdf file searching from root
function find_pdf
set -l root $argv[1]
set -l base $argv[2]
set -l candidate (fd --no-ignore-vcs -F -1 "$base" "$root")
if test -n "$candidate"
zopen "$candidate"
else
return 1
end
end
# echo $src_path
# return 0
# exit if not a typst file
if not string match -q '*.typ' $src_path
qecho "$(path basename $src_path) is not a Typst file!"
return $ret
end
# change abs path to pdf extension
set -l targ (string replace --regex '\.typ$' '.pdf' $src_path)
# get pdf target's base name
set -l base (path basename --no-extension $src_path).pdf
# if a suitable pdf exists in the same dir, open it
if test -f "$targ"
zopen "$targ"
else
# no such file in current dir, time to search!
# if we're in a git repo, search from its root
# if we're not, search from cwd
if git rev-parse --is-inside-work-tree &>/dev/null
set root (git rev-parse --show-toplevel)
else
set root (pwd)
end
if not find_pdf "$root" "$base"
if set -q _flag_q
return 1
else
echo "$base couldn't be found at root $root!"
end
end
end