From 8baba34fb0b52a582c58cf1e6912f77209896b69 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Wed, 15 Aug 2012 07:55:01 -0400 Subject: [PATCH] Refactor tmux aliases --- modules/tmux/README.md | 4 ++-- modules/tmux/init.zsh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/tmux/README.md b/modules/tmux/README.md index cfc3be4..d77c337 100644 --- a/modules/tmux/README.md +++ b/modules/tmux/README.md @@ -24,8 +24,8 @@ the background session and `destroy-unattached on` on every other session Aliases ------- - - `ta` attaches or switches to a tmux session. - - `tl` lists sessions managed by the tmux server. + - `tmuxa` attaches or switches to a tmux session. + - `tmuxl` lists sessions managed by the tmux server. Caveats ------- diff --git a/modules/tmux/init.zsh b/modules/tmux/init.zsh index d315aa2..95bddd8 100644 --- a/modules/tmux/init.zsh +++ b/modules/tmux/init.zsh @@ -40,5 +40,5 @@ fi # Aliases # -alias ta="tmux attach-session" -alias tl="tmux list-sessions" +alias tmuxa='tmux attach-session' +alias tmuxl='tmux list-sessions'