mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Set the key binding which is reported on Windows.
This commit is contained in:
parent
b693ced843
commit
d6c966934d
1 changed files with 4 additions and 2 deletions
|
@ -74,15 +74,17 @@ define [
|
||||||
editor.commands.removeCommand "foldall"
|
editor.commands.removeCommand "foldall"
|
||||||
|
|
||||||
# For European keyboards, the / is above 7 so needs Shift pressing.
|
# For European keyboards, the / is above 7 so needs Shift pressing.
|
||||||
# This comes through as Ctrl-Shift-/ which is mapped to toggleBlockComment.
|
# This comes through as Command-Shift-/ on OS X, which is mapped to
|
||||||
|
# toggleBlockComment.
|
||||||
# This doesn't do anything for LaTeX, so remap this to togglecomment to
|
# This doesn't do anything for LaTeX, so remap this to togglecomment to
|
||||||
# work for European keyboards as normal.
|
# work for European keyboards as normal.
|
||||||
|
# On Windows, the key combo comes as Ctrl-Shift-7.
|
||||||
editor.commands.removeCommand "toggleBlockComment"
|
editor.commands.removeCommand "toggleBlockComment"
|
||||||
editor.commands.removeCommand "togglecomment"
|
editor.commands.removeCommand "togglecomment"
|
||||||
|
|
||||||
editor.commands.addCommand {
|
editor.commands.addCommand {
|
||||||
name: "togglecomment",
|
name: "togglecomment",
|
||||||
bindKey: { win: "Ctrl-/|Ctrl-Shift-/", mac: "Command-/|Command-Shift-/" },
|
bindKey: { win: "Ctrl-/|Ctrl-Shift-7", mac: "Command-/|Command-Shift-/" },
|
||||||
exec: (editor) -> editor.toggleCommentLines(),
|
exec: (editor) -> editor.toggleCommentLines(),
|
||||||
multiSelectAction: "forEachLine",
|
multiSelectAction: "forEachLine",
|
||||||
scrollIntoView: "selectionPart"
|
scrollIntoView: "selectionPart"
|
||||||
|
|
Loading…
Reference in a new issue