Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
93c90a6b
Commit
93c90a6b
authored
Jan 02, 2013
by
Greg Berenfield
Browse files
Fix the fix for Issue #1479
parent
003dd8f4
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/vi-mode/vi-mode.plugin.zsh
View file @
93c90a6b
...
...
@@ -3,18 +3,13 @@
function
zle-keymap-select zle-line-init zle-line-finish
{
# The terminal must be in application mode when ZLE is active for $terminfo
# values to be valid.
if
((
$+
terminfo[smkx]
&&
$+
terminfo[rmkx]
))
;
then
case
"
$0
"
in
(
zle-line-init
)
# Enable terminal application mode.
if
((
${
+terminfo[smkx]
}
))
;
then
printf
'%s'
${
terminfo
[smkx]
}
;;
(
zle-line-finish
)
# Disable terminal application mode.
fi
if
((
${
+terminfo[rmkx]
}
))
;
then
printf
'%s'
${
terminfo
[rmkx]
}
;;
esac
fi
zle reset-prompt
zle
-R
}
...
...
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