-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support <<
and >>
#32
Conversation
|
||
console.log(keys); | ||
if (this.keyHandler[key] !== undefined) { | ||
// Bug: 'two characters does not work' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a bug right now where for some reason, I can't build a key with more than one chars.
d1f4d80
to
f668fb8
Compare
0afa535
to
80da17a
Compare
case 'l': | ||
vscode.commands.executeCommand("cursorRight"); | ||
var keyHandled = false; | ||
for (var window = 0; window <= this.keyHistory.length; window++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use let
here because that's the intent?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, habit. Should be adopting let
.
80da17a
to
2c272ac
Compare
2c272ac
to
f0f626a
Compare
fb9635e
to
4e190a6
Compare
Small PR that adds support for
>>
and<<
.