Commit 96c34ceb authored by Andrew Janke's avatar Andrew Janke
Browse files

Add a deprecation comment.

parent 14b4ba83
...@@ -176,7 +176,6 @@ function omz_urldecode { ...@@ -176,7 +176,6 @@ function omz_urldecode {
emulate -L zsh emulate -L zsh
local encoded_url=$1 local encoded_url=$1
echo -e input $1
# Work bytewise, since URLs escape UTF-8 octets # Work bytewise, since URLs escape UTF-8 octets
local caller_encoding=$langinfo[CODESET] local caller_encoding=$langinfo[CODESET]
local LC_ALL=C local LC_ALL=C
...@@ -188,7 +187,6 @@ function omz_urldecode { ...@@ -188,7 +187,6 @@ function omz_urldecode {
tmp=${tmp:gs/\\/\\\\/} tmp=${tmp:gs/\\/\\\\/}
# Handle %-escapes by turning them into `\xXX` printf escapes # Handle %-escapes by turning them into `\xXX` printf escapes
tmp=${tmp:gs/%/\\x/} tmp=${tmp:gs/%/\\x/}
echo -E "before decode $tmp"
local decoded local decoded
eval "decoded=\$'$tmp'" eval "decoded=\$'$tmp'"
......
# This file is intentionally empty.
#
# The terminalapp plugin is deprecated and may be removed in a future release.
# Its functionality has been folded in to the core lib/termsupport.zsh, which
# is loaded for all users. You can remove terminalapp from your $plugins list
# once all your systems are updated to the current version of Oh My Zsh.
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment