aboutsummaryrefslogtreecommitdiffstats
path: root/unicode.js
diff options
context:
space:
mode:
Diffstat (limited to 'unicode.js')
-rw-r--r--unicode.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/unicode.js b/unicode.js
index 2278b99..a1076e3 100644
--- a/unicode.js
+++ b/unicode.js
@@ -68,8 +68,8 @@ let PLUGIN_INFO =
commands.addUserCommand(
['unicode', 'uc'],
'unicode (un)escape',
- function (arg, bang)
- copyAndEcho((bang ? unescape : escape)(arg.string)),
+ function (arg)
+ copyAndEcho((arg.bang ? unescape : escape)(arg.string)),
{argCount: '*', bang: true},
true
);