Refactor Screen aliases

This commit is contained in:
Sorin Ionescu 2012-08-14 22:15:45 -04:00
parent abfa69fc01
commit b2f0bdf8fd
2 changed files with 8 additions and 6 deletions

View file

@ -17,9 +17,10 @@ To enable this feature, add the following line to *zshrc*:
Aliases
-------
- `sl` lists sessions/socket directory.
- `sn` starts a new session.
- `sr` attaches to a session if one exists or start a new one.
- `scr` is short for `screen`.
- `scrl` lists sessions/socket directory.
- `scrn` starts a new session.
- `scrr` attaches to a session if one exists or start a new one.
Authors
-------

View file

@ -32,7 +32,8 @@ fi
# Aliases
#
alias sl="screen -list"
alias sn="screen -U -S"
alias sr="screen -a -A -U -D -R"
alias scr='screen'
alias scrl='screen -list'
alias scrn='screen -U -S'
alias scrr='screen -a -A -U -D -R'