tags:

views:

62

answers:

1

I have the following in my .zshrc

if [[ $STY = '' ]] then screen -xR; fi

I made a few changes to my .zshrc.

I run unsuccessfully to see changes

reset

I also restarted my shell unsuccessfully to see the changes. This suggests me that the screen needs to be restarted somehow.

How can you restart screen such that I see the changes in my .zshrc?

+1  A: 

source ~/.zshrc

Also maybe killall screen, then just start screen again?

The Unknown
Thank you! @ Another way is to just logout by Ctrl-D.
Masi