forked from sorin-ionescu/prezto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Fix sorin-ionescu#119] Add documentation for terminal
- Loading branch information
Showing
2 changed files
with
25 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Terminal | ||
======== | ||
|
||
Sets terminal window and tab titles. | ||
|
||
Settings | ||
-------- | ||
|
||
### Auto-Title | ||
|
||
To auto set the terminal window and tab titles with the current command or | ||
directory, add the following to *zshrc*: | ||
|
||
zstyle ':omz:module:terminal' auto-title 'yes' | ||
|
||
Authors | ||
------- | ||
|
||
*The authors of this module should be contacted via the [issue tracker][1].* | ||
|
||
- [James Cox](https://github.com/imajes) | ||
- [Sorin Ionescu](https://github.com/sorin-ionescu) | ||
|
||
[1]: https://github.com/sorin-ionescu/oh-my-zsh/issues | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,6 @@ | |
# James Cox <[email protected]> | ||
# Sorin Ionescu <[email protected]> | ||
# | ||
# Usage: | ||
# To auto set the terminal window and tab titles with the current command or | ||
# directory, add the following to zshrc: | ||
# | ||
# zstyle ':omz:module:terminal' auto-title 'yes' | ||
# | ||
|
||
# Dumb terminals lack support. | ||
if [[ "$TERM" == 'dumb' ]]; then | ||
|