mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-23 22:01:00 +00:00
Merge branch 'master' of github.com:sharelatex/web-sharelatex
This commit is contained in:
commit
3bf7948510
1 changed files with 28 additions and 0 deletions
|
@ -78,6 +78,34 @@ define [
|
||||||
readOnly: true
|
readOnly: true
|
||||||
editor.commands.removeCommand "replace"
|
editor.commands.removeCommand "replace"
|
||||||
|
|
||||||
|
# Bold text on CMD+B
|
||||||
|
editor.commands.addCommand
|
||||||
|
name: "bold",
|
||||||
|
bindKey: win: "Ctrl-B", mac: "Command-B"
|
||||||
|
exec: (editor) ->
|
||||||
|
selection = editor.getSelection()
|
||||||
|
if selection.isEmpty()
|
||||||
|
editor.insert("\\textbf{}")
|
||||||
|
editor.navigateLeft(1)
|
||||||
|
else
|
||||||
|
text = editor.getCopyText()
|
||||||
|
editor.insert("\\textbf{" + text + "}")
|
||||||
|
readOnly: false
|
||||||
|
|
||||||
|
# Italicise text on CMD+I
|
||||||
|
editor.commands.addCommand
|
||||||
|
name: "italics",
|
||||||
|
bindKey: win: "Ctrl-I", mac: "Command-I"
|
||||||
|
exec: (editor) ->
|
||||||
|
selection = editor.getSelection()
|
||||||
|
if selection.isEmpty()
|
||||||
|
editor.insert("\\textit{}")
|
||||||
|
editor.navigateLeft(1)
|
||||||
|
else
|
||||||
|
text = editor.getCopyText()
|
||||||
|
editor.insert("\\textit{" + text + "}")
|
||||||
|
readOnly: false
|
||||||
|
|
||||||
scope.$watch "onCtrlEnter", (callback) ->
|
scope.$watch "onCtrlEnter", (callback) ->
|
||||||
if callback?
|
if callback?
|
||||||
editor.commands.addCommand
|
editor.commands.addCommand
|
||||||
|
|
Loading…
Reference in a new issue