1
1
mirror of https://github.com/wez/wezterm.git synced 2024-10-27 08:09:45 +03:00
wezterm/ci/update-derived-files.sh
Wez Furlong e048410491
imgcat: add resize and resample functionality
This is primarily to improve the chances of displaying an arbitrary
image without resorting to additional external tools, that may be
difficult or impossible to install.

refs: #3716
refs: #3264
2023-07-17 10:55:53 -07:00

56 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
# Update files that are derived from things baked into the executable
for shell in bash zsh fish ; do
target/debug/wezterm shell-completion --shell $shell > assets/shell-completion/$shell
done
for mode in copy_mode search_mode ; do
fname="docs/examples/default-$(echo $mode | tr _ -)-key-table.markdown"
# Make a wrapped up version of this as markdown, as
# gelatyx doesn't understand the file include mechanism
# when used in a lua block
echo "\`\`\`lua" > $fname
target/debug/wezterm -n show-keys --lua --key-table $mode >> $fname
echo "\`\`\`" >> $fname
done
# For whatever reason, running --help on macOS vs. Linux results in different
# opinions on leading/trailing whitespace. In order to minimize diffs and
# be more consistent, explicitly trim leading/trailing space from the
# output stream.
# <https://unix.stackexchange.com/a/552191/123914>
trim_file() {
perl -0777 -pe 's/^\n+|\n\K\n+$//g'
}
cargo run --example narrow $PWD/target/debug/wezterm --help | ./target/debug/strip-ansi-escapes | trim_file > docs/examples/cmd-synopsis-wezterm--help.txt
for cmd in start ssh serial connect ls-fonts show-keys imgcat set-working-directory record replay ; do
fname="docs/examples/cmd-synopsis-wezterm-${cmd}--help.txt"
cargo run --example narrow $PWD/target/debug/wezterm $cmd --help | ./target/debug/strip-ansi-escapes | trim_file > $fname
done
for cmd in \
activate-pane \
activate-pane-direction \
adjust-pane-size \
activate-tab \
get-pane-direction \
get-text \
kill-pane \
list \
list-clients \
move-pane-to-new-tab \
rename-workspace \
send-text \
set-tab-title \
set-window-title \
spawn \
split-pane \
; do
fname="docs/examples/cmd-synopsis-wezterm-cli-${cmd}--help.txt"
cargo run --example narrow $PWD/target/debug/wezterm cli $cmd --help | ./target/debug/strip-ansi-escapes | trim_file > $fname
done