Skip to content

Commit

Permalink
alt(+shift)+l was clashing with important shortcuts in French keybo…
Browse files Browse the repository at this point in the history
…ard, fixing that
  • Loading branch information
ulugbekna committed Oct 19, 2021
1 parent 5095fc3 commit 28fe29d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

## Unreleased

- Add commands `Jump to Next Typed Hole` (shortcut: `Alt + L`) and
`Jump to Previous Typed Hole` (shortcut: `Alt + Shift + L`)
- Add commands `Jump to Next Typed Hole` (shortcut: `Alt + Y`) and
`Jump to Previous Typed Hole` (shortcut: `Alt + Shift + Y`)

_What typed holes are_

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -287,12 +287,12 @@
},
{
"command": "ocaml.next-hole",
"key": "Alt+L",
"key": "Alt+Y",
"when": "editorLangId == ocaml || editorLangId == ocaml.interface || editorLangId == reason || editorLangId == ocaml.ocamllex"
},
{
"command": "ocaml.prev-hole",
"key": "Shift+Alt+L",
"key": "Shift+Alt+Y",
"when": "editorLangId == ocaml || editorLangId == ocaml.interface || editorLangId == reason || editorLangId == ocaml.ocamllex"
},
{
Expand Down Expand Up @@ -983,4 +983,4 @@
}
]
}
}
}

0 comments on commit 28fe29d

Please sign in to comment.