Skip to content

Commit

Permalink
Bugfix - OSX: Indentation after using QuickOpen (onivim#378)
Browse files Browse the repository at this point in the history
* Don't send <D-> if no key is pressed with it

* Add <D-S-> to blocked list

* Remove accidentally added package-lock
  • Loading branch information
bryphe authored Jul 4, 2019
1 parent 27fe422 commit 4ba120c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/editor/Store/VimStoreConnector.re
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ let start = () => {
/* TODO: Fix these keypaths in libvim to not be blocking */
=>
if (!String.equal(key, "<S-SHIFT>")
&& !String.equal(key, "<D->")
&& !String.equal(key, "<D-S->")
&& !String.equal(key, "<C->")
&& !String.equal(key, "<A-C->")
&& !String.equal(key, "<SHIFT>")
Expand Down

0 comments on commit 4ba120c

Please sign in to comment.