Removing unnecessary comments

This commit is contained in:
Roger Steve Ruiz 2022-11-23 20:20:55 -05:00
parent e2b380a768
commit 795a26c278
No known key found for this signature in database
GPG key ID: 68061DBF1C4C0B44

View file

@ -2,8 +2,6 @@
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
main() {
# TODO: This function works great in here, but I'd like also like for it to set
# the option to the default if it's not set too. I'll get to it soon.
get-tmux-option() {
local option value default
option="$1"
@ -13,8 +11,6 @@ main() {
if [ -n "$value" ]; then
echo "$value"
else
# README: Set the default option if it's not set originally.
tmux set-option -gq "${option}" "${default}"
echo "$default"
fi
}