Comments
-
Greg Hurrell
This one might be a bit tricky to fix. The plug-in specifically listens only for a subset of ASCII characters.
numbers = ('0'..'9').to_a.join lowercase = ('a'..'z').to_a.join uppercase = lowercase.upcase punctuation = '<>`@#~!"$%&/()=+*-_.,;:?\\\'{}[] ' # and space
So we're talking about numbers, lower and uppercase letters, and some punctuation.
Not really sure how I could go about capturing other keypresses, seeing as in order to receive key presses I have to explicitly create a VIM
map
for each keypress that I am interested in. Might have to have a dig around and see how other plug-ins handle this. -
Greg Hurrell
Google resources:
Not much else turns up.
Add a comment
Comments are now closed for this issue.