mirror of
https://github.com/wez/wezterm.git
synced 2024-11-22 13:16:39 +03:00
99c9613966
refs: #4160
57 lines
1.9 KiB
Bash
Executable File
57 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 \
|
|
zoom-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
|