1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-02 10:59:25 +00:00

Add zstyle to skip aliases for additional modules

This commit is contained in:
mattmc3
2023-04-12 22:02:41 -04:00
committed by Kaleb Elwert
parent fc444f57e1
commit da87c79b3a
13 changed files with 145 additions and 119 deletions

View File

@ -36,7 +36,9 @@ fi
# Aliases
#
alias scr='screen'
alias scrl='screen -list'
alias scrn='screen -U -S'
alias scrr='screen -a -A -U -D -R'
if ! zstyle -t ':prezto:module:screen:alias' skip; then
alias scr='screen'
alias scrl='screen -list'
alias scrn='screen -U -S'
alias scrr='screen -a -A -U -D -R'
fi