Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
c7105a53
Commit
c7105a53
authored
13 years ago
by
Jeffrey Dileo
Browse files
Options
Download
Email Patches
Plain Diff
Disabled title function for emacs term mode
parent
1120f973
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/termsupport.zsh
+3
-1
lib/termsupport.zsh
with
3 additions
and
1 deletion
+3
-1
lib/termsupport.zsh
View file @
c7105a53
...
...
@@ -3,7 +3,9 @@
#Fully support screen, iterm, and probably most modern xterm and rxvt
#Limited support for Apple Terminal (Terminal can't set window or tab separately)
function
title
{
[
"
$DISABLE_AUTO_TITLE
"
!=
"true"
]
||
return
if
[[
"
$DISABLE_AUTO_TITLE
"
==
"true"
]]
||
[[
"
$EMACS
"
==
*
term
*
]]
;
then
return
fi
if
[[
"
$TERM
"
==
screen
*
]]
;
then
print
-Pn
"
\e
k
$1
:q
\e\\
"
#set screen hardstatus, usually truncated at 20 chars
elif
[[
"
$TERM
"
==
xterm
*
]]
||
[[
$TERM
==
rxvt
*
]]
||
[[
"
$TERM_PROGRAM
"
==
"iTerm.app"
]]
;
then
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help