overleaf/services/web/app/views/project/editor/hotkeys.pug
2017-01-20 12:03:02 +00:00

97 lines
No EOL
2.2 KiB
Text

script(type="text/ng-template", id="hotkeysModalTemplate")
.modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) ×
h3 #{translate("hotkeys")}
.modal-body.modal-hotkeys
h3 #{translate("common")}
.row
.col-xs-6
.hotkey
span.combination {{ctrl}} + F
span.description Find (and replace)
.hotkey
span.combination {{ctrl}} + Enter
span.description Compile
.col-xs-6
.hotkey
span.combination {{ctrl}} + Z
span.description Undo
.hotkey
span.combination {{ctrl}} + Y
span.description Redo
h3 #{translate("navigation")}
.row
.col-xs-6
.hotkey
span.combination {{ctrl}} + Home
span.description Beginning of document
.hotkey
span.combination {{ctrl}} + End
span.description End of document
.col-xs-6
.hotkey
span.combination {{ctrl}} + L
span.description Go To Line
h3 #{translate("editing")}
.row
.col-xs-6
.hotkey
span.combination {{ctrl}} + /
span.description Toggle Comment
.hotkey
span.combination {{ctrl}} + D
span.description Delete Current Line
.hotkey
span.combination {{ctrl}} + A
span.description Select All
.hotkey
span.combination Tab
span.description Indent Selection
.col-xs-6
.hotkey
span.combination Ctrl + U
span.description To Uppercase
.hotkey
span.combination Ctrl + Shift + U
span.description To Lowercase
.hotkey
span.combination {{ctrl}} + B
span.description Bold text
.hotkey
span.combination {{ctrl}} + I
span.description Italic Text
h3 #{translate("autocomplete")}
.row
.col-xs-6
.hotkey
span.combination Ctrl + Space
span.description Autocomplete Menu
.col-xs-6
.hotkey
span.combination Tab / Up / Down
span.description Select Candidate
.hotkey
span.combination Enter
span.description Insert Candidate
h3 !{translate("autocomplete_references")}
.row
.col-xs-6
.hotkey
span.combination Ctrl + Space
span.description Search References
.modal-footer
button.btn.btn-default(
ng-click="cancel()"
) #{translate("ok")}