Skip to content

Commit

Permalink
Merge pull request #125 from HeathNaylor/master
Browse files Browse the repository at this point in the history
Fix comparision operators. Fixes #124
  • Loading branch information
Bruno Sutic committed Jan 30, 2016
2 parents 370b486 + 3bc852b commit a2eb3b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/restore.sh
Expand Up @@ -274,7 +274,7 @@ restore_shell_history() {
awk 'BEGIN { FS="\t"; OFS="\t" } /^pane/ { print $2, $3, $7, $10; }' $(last_resurrect_file) |
while IFS=$d read session_name window_number pane_index pane_command; do
if ! is_pane_registered_as_existing "$session_name" "$window_number" "$pane_index"; then
if [ "$pane_command" = "bash" ]; then
if [ "$pane_command" == "bash" ]; then
local pane_id="$session_name:$window_number.$pane_index"
# tmux send-keys has -R option that should reset the terminal.
# However, appending 'clear' to the command seems to work more reliably.
Expand Down
2 changes: 1 addition & 1 deletion scripts/save.sh
Expand Up @@ -146,7 +146,7 @@ save_shell_history() {
local pane_id="$1"
local pane_command="$2"
local full_command="$3"
if [ "$pane_command" = "bash" ] && [ "$full_command" = ":" ]; then
if [ "$pane_command" == "bash" ] && [ "$full_command" == ":" ]; then
# leading space prevents the command from being saved to history
# (assuming default HISTCONTROL settings)
local write_command=" history -w '$(resurrect_history_file "$pane_id")'"
Expand Down

0 comments on commit a2eb3b0

Please sign in to comment.