1
0
Fork 0
mirror of synced 2025-01-14 17:06:15 -05:00

Fix missing shebang in some files

This commit is contained in:
slange-dev 2025-01-10 01:11:39 +01:00
parent 99469c4a9b
commit da244e9a9d
No known key found for this signature in database
GPG key ID: 1D45A63B186F4EFE
7 changed files with 13 additions and 0 deletions

View file

@ -1,6 +1,7 @@
# Changelog # Changelog
### master ### master
- bug: add missing shebang in some files.
### v3.1.0, 2023-01-03 ### v3.1.0, 2023-01-03
- upgrade to new version of `tmux-test` - upgrade to new version of `tmux-test`

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
# using @tpm_plugins is now deprecated in favor of using @plugin syntax # using @tpm_plugins is now deprecated in favor of using @plugin syntax
tpm_plugins_variable_name="@tpm_plugins" tpm_plugins_variable_name="@tpm_plugins"

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
echo_ok() { echo_ok() {
echo "$*" echo "$*"
} }

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
_has_emacs_mode_keys() { _has_emacs_mode_keys() {
$(tmux show -gw mode-keys | grep -q emacs) $(tmux show -gw mode-keys | grep -q emacs)
} }

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
HELPERS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" HELPERS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$HELPERS_DIR/plugin_functions.sh" source "$HELPERS_DIR/plugin_functions.sh"

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
ensure_tpm_path_exists() { ensure_tpm_path_exists() {
mkdir -p "$(tpm_path)" mkdir -p "$(tpm_path)"
} }

View file

@ -1,3 +1,5 @@
#!/usr/bin/env bash
install_key_option="@tpm-install" install_key_option="@tpm-install"
default_install_key="I" default_install_key="I"