We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab9f66c commit f6fde07Copy full SHA for f6fde07
js/vimlfunc.js
@@ -151,6 +151,9 @@ function viml_keys(obj) {
151
}
152
153
function viml_len(obj) {
154
+ if (typeof obj === 'string') {
155
+ return unescape(encodeURIComponent(obj))
156
+ }
157
return obj.length;
158
159
js/vimlparser.js
0 commit comments