File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,14 @@ tmuxp Changelog
3
3
4
4
Here you can find the recent changes to tmuxp.
5
5
6
+ 2013-10-24
7
+ ----------
8
+
9
+ - [internal] clean out old code for ``automatic-rename `` option. it will
10
+ be reimplemented fresh.
11
+ - [cli] check for ``oh-my-zsh `` when using ``$SHELL `` ``zsh ``. Prompt if
12
+ ``DISABLE_AUTO_TITLE `` is unset or set to ``true ``.
13
+
6
14
2013-10-23
7
15
----------
8
16
Original file line number Diff line number Diff line change @@ -388,14 +388,10 @@ def oh_my_zsh_auto_title():
388
388
if 'SHELL' in os .environ and 'zsh' in os .environ .get ('SHELL' ):
389
389
if os .path .exists (os .path .expanduser ('~/.oh-my-zsh' )):
390
390
# oh-my-zsh exists
391
- if 'DISABLE_AUTO_TITLE' not in os .environ or os .environ .get ('DISABLE_AUTO_TITLE' ) is "true " :
391
+ if 'DISABLE_AUTO_TITLE' not in os .environ or os .environ .get ('DISABLE_AUTO_TITLE' ) == "false " :
392
392
print ('Please set:\n \n '
393
393
'\t export DISABLE_AUTO_TITLE = \' true\' \n \n '
394
394
'in ~/.zshrc or where your zsh profile is stored.\n '
395
395
'Remember the "export" at the beginning!\n \n '
396
396
'Then create a new shell or type:\n \n '
397
397
'\t $ source ~/.zshrc' )
398
-
399
- # check for oh-my-zsh
400
- # you are using oh-my-zsh without DISABLE_AUTO_TITLE, this can cause unexpected
401
- # behavior with tmux window renaming. Let me uncomment for you?
You can’t perform that action at this time.
0 commit comments