2022-08-04 16:15:56 +03:00
|
|
|
#!/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
|
2023-03-22 04:44:26 +03:00
|
|
|
|
|
|
|
cargo run --example narrow $PWD/target/debug/wezterm --help | ./target/debug/strip-ansi-escapes > 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 > $fname
|
|
|
|
done
|
2023-03-23 06:44:15 +03:00
|
|
|
|
2023-03-25 02:53:29 +03:00
|
|
|
for cmd in list list-clients move-pane-to-new-tab split-pane spawn send-text get-text activate-pane-direction kill-pane activate-pane activate-tab ; do
|
2023-03-23 06:44:15 +03:00
|
|
|
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 > $fname
|
|
|
|
done
|