Skip to content

Commit

Permalink
[bash] Update .bash_aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
fifthdrew committed Nov 2, 2024
1 parent 8ab2021 commit b789aee
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bash/.bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ alias vim='echo -ne "\e[2 q"; vim'

# Tmux and Tmate
## Creates a new tmux session named Default or attach to it if already exist
alias t='tmux new -A -d -s Default'
## Same that tmux, except that must pass the socket location explicitly
alias tt='tmate -S "/tmp/tmate-1000/default" new -A -d -s Default'
alias t='tmux new -A -s Default'
## Creates a new tmate session named Default, must pass the socket location explicitly
## if the default socket is not in the configuration file
alias tt='tmate new -A -s Default'

# Ed(1)
## Call ed with underline cursor and * prompt
Expand Down

0 comments on commit b789aee

Please sign in to comment.