mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
542 lines
18 KiB
JavaScript
Executable file
542 lines
18 KiB
JavaScript
Executable file
/* ***** BEGIN LICENSE BLOCK *****
|
|
* Distributed under the BSD license:
|
|
*
|
|
* Copyright (c) 2010, Ajax.org B.V.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
* * Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* * Neither the name of Ajax.org B.V. nor the
|
|
* names of its contributors may be used to endorse or promote products
|
|
* derived from this software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
define(function(require, exports, module) {
|
|
"use strict";
|
|
|
|
var lang = require("../lib/lang");
|
|
var config = require("../config");
|
|
|
|
function bindKey(win, mac) {
|
|
return {win: win, mac: mac};
|
|
}
|
|
|
|
/*
|
|
multiSelectAction: "forEach"|"forEachLine"|function|undefined,
|
|
scrollIntoView: true|"cursor"|"center"|"selectionPart"
|
|
*/
|
|
exports.commands = [{
|
|
name: "showSettingsMenu",
|
|
bindKey: bindKey("Ctrl-,", "Command-,"),
|
|
exec: function(editor) {
|
|
config.loadModule("ace/ext/settings_menu", function(module) {
|
|
module.init(editor);
|
|
editor.showSettingsMenu();
|
|
});
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "selectall",
|
|
bindKey: bindKey("Ctrl-A", "Command-A"),
|
|
exec: function(editor) { editor.selectAll(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "centerselection",
|
|
bindKey: bindKey(null, "Ctrl-L"),
|
|
exec: function(editor) { editor.centerSelection(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoline",
|
|
bindKey: bindKey("Ctrl-L", "Command-L"),
|
|
exec: function(editor) {
|
|
var line = parseInt(prompt("Enter line number:"), 10);
|
|
if (!isNaN(line)) {
|
|
editor.gotoLine(line);
|
|
}
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "fold",
|
|
bindKey: bindKey("Alt-L|Ctrl-F1", "Command-Alt-L|Command-F1"),
|
|
exec: function(editor) { editor.session.toggleFold(false); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "unfold",
|
|
bindKey: bindKey("Alt-Shift-L|Ctrl-Shift-F1", "Command-Alt-Shift-L|Command-Shift-F1"),
|
|
exec: function(editor) { editor.session.toggleFold(true); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "toggleFoldWidget",
|
|
bindKey: bindKey("F2", "F2"),
|
|
exec: function(editor) { editor.session.toggleFoldWidget(); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "toggleParentFoldWidget",
|
|
bindKey: bindKey("Alt-F2", "Alt-F2"),
|
|
exec: function(editor) { editor.session.toggleFoldWidget(true); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "foldall",
|
|
bindKey: bindKey("Ctrl-Alt-0", "Ctrl-Command-Option-0"),
|
|
exec: function(editor) { editor.session.foldAll(); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "foldOther",
|
|
bindKey: bindKey("Alt-0", "Command-Option-0"),
|
|
exec: function(editor) {
|
|
editor.session.foldAll();
|
|
editor.session.unfold(editor.selection.getAllRanges());
|
|
},
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "unfoldall",
|
|
bindKey: bindKey("Alt-Shift-0", "Command-Option-Shift-0"),
|
|
exec: function(editor) { editor.session.unfold(); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "findnext",
|
|
bindKey: bindKey("Ctrl-K", "Command-G"),
|
|
exec: function(editor) { editor.findNext(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "findprevious",
|
|
bindKey: bindKey("Ctrl-Shift-K", "Command-Shift-G"),
|
|
exec: function(editor) { editor.findPrevious(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selectOrFindNext",
|
|
bindKey: bindKey("ALt-K", "Ctrl-G"),
|
|
exec: function(editor) {
|
|
if (editor.selection.isEmpty())
|
|
editor.selection.selectWord();
|
|
else
|
|
editor.findNext();
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "selectOrFindPrevious",
|
|
bindKey: bindKey("Alt-Shift-K", "Ctrl-Shift-G"),
|
|
exec: function(editor) {
|
|
if (editor.selection.isEmpty())
|
|
editor.selection.selectWord();
|
|
else
|
|
editor.findPrevious();
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "find",
|
|
bindKey: bindKey("Ctrl-F", "Command-F"),
|
|
exec: function(editor) {
|
|
config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor)});
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "overwrite",
|
|
bindKey: "Insert",
|
|
exec: function(editor) { editor.toggleOverwrite(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttostart",
|
|
bindKey: bindKey("Ctrl-Shift-Home", "Command-Shift-Up"),
|
|
exec: function(editor) { editor.getSelection().selectFileStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "gotostart",
|
|
bindKey: bindKey("Ctrl-Home", "Command-Home|Command-Up"),
|
|
exec: function(editor) { editor.navigateFileStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "selectup",
|
|
bindKey: bindKey("Shift-Up", "Shift-Up"),
|
|
exec: function(editor) { editor.getSelection().selectUp(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "golineup",
|
|
bindKey: bindKey("Up", "Up|Ctrl-P"),
|
|
exec: function(editor, args) { editor.navigateUp(args.times); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttoend",
|
|
bindKey: bindKey("Ctrl-Shift-End", "Command-Shift-Down"),
|
|
exec: function(editor) { editor.getSelection().selectFileEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "gotoend",
|
|
bindKey: bindKey("Ctrl-End", "Command-End|Command-Down"),
|
|
exec: function(editor) { editor.navigateFileEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "selectdown",
|
|
bindKey: bindKey("Shift-Down", "Shift-Down"),
|
|
exec: function(editor) { editor.getSelection().selectDown(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "golinedown",
|
|
bindKey: bindKey("Down", "Down|Ctrl-N"),
|
|
exec: function(editor, args) { editor.navigateDown(args.times); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectwordleft",
|
|
bindKey: bindKey("Ctrl-Shift-Left", "Option-Shift-Left"),
|
|
exec: function(editor) { editor.getSelection().selectWordLeft(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotowordleft",
|
|
bindKey: bindKey("Ctrl-Left", "Option-Left"),
|
|
exec: function(editor) { editor.navigateWordLeft(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttolinestart",
|
|
bindKey: bindKey("Alt-Shift-Left", "Command-Shift-Left"),
|
|
exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotolinestart",
|
|
bindKey: bindKey("Alt-Left|Home", "Command-Left|Home|Ctrl-A"),
|
|
exec: function(editor) { editor.navigateLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectleft",
|
|
bindKey: bindKey("Shift-Left", "Shift-Left"),
|
|
exec: function(editor) { editor.getSelection().selectLeft(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoleft",
|
|
bindKey: bindKey("Left", "Left|Ctrl-B"),
|
|
exec: function(editor, args) { editor.navigateLeft(args.times); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectwordright",
|
|
bindKey: bindKey("Ctrl-Shift-Right", "Option-Shift-Right"),
|
|
exec: function(editor) { editor.getSelection().selectWordRight(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotowordright",
|
|
bindKey: bindKey("Ctrl-Right", "Option-Right"),
|
|
exec: function(editor) { editor.navigateWordRight(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttolineend",
|
|
bindKey: bindKey("Alt-Shift-Right", "Command-Shift-Right"),
|
|
exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotolineend",
|
|
bindKey: bindKey("Alt-Right|End", "Command-Right|End|Ctrl-E"),
|
|
exec: function(editor) { editor.navigateLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectright",
|
|
bindKey: bindKey("Shift-Right", "Shift-Right"),
|
|
exec: function(editor) { editor.getSelection().selectRight(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoright",
|
|
bindKey: bindKey("Right", "Right|Ctrl-F"),
|
|
exec: function(editor, args) { editor.navigateRight(args.times); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectpagedown",
|
|
bindKey: "Shift-PageDown",
|
|
exec: function(editor) { editor.selectPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "pagedown",
|
|
bindKey: bindKey(null, "Option-PageDown"),
|
|
exec: function(editor) { editor.scrollPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotopagedown",
|
|
bindKey: bindKey("PageDown", "PageDown|Ctrl-V"),
|
|
exec: function(editor) { editor.gotoPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selectpageup",
|
|
bindKey: "Shift-PageUp",
|
|
exec: function(editor) { editor.selectPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "pageup",
|
|
bindKey: bindKey(null, "Option-PageUp"),
|
|
exec: function(editor) { editor.scrollPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotopageup",
|
|
bindKey: "PageUp",
|
|
exec: function(editor) { editor.gotoPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "scrollup",
|
|
bindKey: bindKey("Ctrl-Up", null),
|
|
exec: function(e) { e.renderer.scrollBy(0, -2 * e.renderer.layerConfig.lineHeight); },
|
|
readOnly: true
|
|
}, {
|
|
name: "scrolldown",
|
|
bindKey: bindKey("Ctrl-Down", null),
|
|
exec: function(e) { e.renderer.scrollBy(0, 2 * e.renderer.layerConfig.lineHeight); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selectlinestart",
|
|
bindKey: "Shift-Home",
|
|
exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectlineend",
|
|
bindKey: "Shift-End",
|
|
exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "togglerecording",
|
|
bindKey: bindKey("Ctrl-Alt-E", "Command-Option-E"),
|
|
exec: function(editor) { editor.commands.toggleRecording(editor); },
|
|
readOnly: true
|
|
}, {
|
|
name: "replaymacro",
|
|
bindKey: bindKey("Ctrl-Shift-E", "Command-Shift-E"),
|
|
exec: function(editor) { editor.commands.replay(editor); },
|
|
readOnly: true
|
|
}, {
|
|
name: "jumptomatching",
|
|
bindKey: bindKey("Ctrl-P", "Ctrl-Shift-P"),
|
|
exec: function(editor) { editor.jumpToMatching(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttomatching",
|
|
bindKey: bindKey("Ctrl-Shift-P", null),
|
|
exec: function(editor) { editor.jumpToMatching(true); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
},
|
|
|
|
// commands disabled in readOnly mode
|
|
{
|
|
name: "cut",
|
|
exec: function(editor) {
|
|
var range = editor.getSelectionRange();
|
|
editor._emit("cut", range);
|
|
|
|
if (!editor.selection.isEmpty()) {
|
|
editor.session.remove(range);
|
|
editor.clearSelection();
|
|
}
|
|
},
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "removeline",
|
|
bindKey: bindKey("Ctrl-D", "Command-D"),
|
|
exec: function(editor) { editor.removeLines(); },
|
|
multiSelectAction: "forEachLine"
|
|
}, {
|
|
name: "duplicateSelection",
|
|
bindKey: bindKey("Ctrl-Shift-D", "Command-Shift-D"),
|
|
exec: function(editor) { editor.duplicateSelection(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "sortlines",
|
|
bindKey: bindKey("Ctrl-Alt-S", "Command-Alt-S"),
|
|
exec: function(editor) { editor.sortLines(); },
|
|
multiSelectAction: "forEachLine"
|
|
}, {
|
|
name: "togglecomment",
|
|
bindKey: bindKey("Ctrl-/", "Command-/"),
|
|
exec: function(editor) { editor.toggleCommentLines(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "toggleBlockComment",
|
|
bindKey: bindKey("Ctrl-Shift-/", "Command-Shift-/"),
|
|
exec: function(editor) { editor.toggleBlockComment(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "modifyNumberUp",
|
|
bindKey: bindKey("Ctrl-Shift-Up", "Alt-Shift-Up"),
|
|
exec: function(editor) { editor.modifyNumber(1); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "modifyNumberDown",
|
|
bindKey: bindKey("Ctrl-Shift-Down", "Alt-Shift-Down"),
|
|
exec: function(editor) { editor.modifyNumber(-1); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "replace",
|
|
bindKey: bindKey("Ctrl-H", "Command-Option-F"),
|
|
exec: function(editor) {
|
|
config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor, true)});
|
|
}
|
|
}, {
|
|
name: "undo",
|
|
bindKey: bindKey("Ctrl-Z", "Command-Z"),
|
|
exec: function(editor) { editor.undo(); }
|
|
}, {
|
|
name: "redo",
|
|
bindKey: bindKey("Ctrl-Shift-Z|Ctrl-Y", "Command-Shift-Z|Command-Y"),
|
|
exec: function(editor) { editor.redo(); }
|
|
}, {
|
|
name: "copylinesup",
|
|
bindKey: bindKey("Alt-Shift-Up", "Command-Option-Up"),
|
|
exec: function(editor) { editor.copyLinesUp(); }
|
|
}, {
|
|
name: "movelinesup",
|
|
bindKey: bindKey("Alt-Up", "Option-Up"),
|
|
exec: function(editor) { editor.moveLinesUp(); }
|
|
}, {
|
|
name: "copylinesdown",
|
|
bindKey: bindKey("Alt-Shift-Down", "Command-Option-Down"),
|
|
exec: function(editor) { editor.copyLinesDown(); }
|
|
}, {
|
|
name: "movelinesdown",
|
|
bindKey: bindKey("Alt-Down", "Option-Down"),
|
|
exec: function(editor) { editor.moveLinesDown(); }
|
|
}, {
|
|
name: "del",
|
|
bindKey: bindKey("Delete", "Delete|Ctrl-D|Shift-Delete"),
|
|
exec: function(editor) { editor.remove("right"); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "backspace",
|
|
bindKey: bindKey(
|
|
"Shift-Backspace|Backspace",
|
|
"Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"
|
|
),
|
|
exec: function(editor) { editor.remove("left"); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "cut_or_delete",
|
|
bindKey: bindKey("Shift-Delete", null),
|
|
exec: function(editor) {
|
|
if (editor.selection.isEmpty()) {
|
|
editor.remove("left");
|
|
} else {
|
|
return false;
|
|
}
|
|
},
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "removetolinestart",
|
|
bindKey: bindKey("Alt-Backspace", "Command-Backspace"),
|
|
exec: function(editor) { editor.removeToLineStart(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "removetolineend",
|
|
bindKey: bindKey("Alt-Delete", "Ctrl-K"),
|
|
exec: function(editor) { editor.removeToLineEnd(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "removewordleft",
|
|
bindKey: bindKey("Ctrl-Backspace", "Alt-Backspace|Ctrl-Alt-Backspace"),
|
|
exec: function(editor) { editor.removeWordLeft(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "removewordright",
|
|
bindKey: bindKey("Ctrl-Delete", "Alt-Delete"),
|
|
exec: function(editor) { editor.removeWordRight(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "outdent",
|
|
bindKey: bindKey("Shift-Tab", "Shift-Tab"),
|
|
exec: function(editor) { editor.blockOutdent(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "indent",
|
|
bindKey: bindKey("Tab", "Tab"),
|
|
exec: function(editor) { editor.indent(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "blockoutdent",
|
|
bindKey: bindKey("Ctrl-[", "Ctrl-["),
|
|
exec: function(editor) { editor.blockOutdent(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "blockindent",
|
|
bindKey: bindKey("Ctrl-]", "Ctrl-]"),
|
|
exec: function(editor) { editor.blockIndent(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "insertstring",
|
|
exec: function(editor, str) { editor.insert(str); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "inserttext",
|
|
exec: function(editor, args) {
|
|
editor.insert(lang.stringRepeat(args.text || "", args.times || 1));
|
|
},
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "splitline",
|
|
bindKey: bindKey(null, "Ctrl-O"),
|
|
exec: function(editor) { editor.splitLine(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "transposeletters",
|
|
bindKey: bindKey("Ctrl-T", "Ctrl-T"),
|
|
exec: function(editor) { editor.transposeLetters(); },
|
|
multiSelectAction: function(editor) {editor.transposeSelections(1); }
|
|
}, {
|
|
name: "touppercase",
|
|
bindKey: bindKey("Ctrl-U", "Ctrl-U"),
|
|
exec: function(editor) { editor.toUpperCase(); },
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "tolowercase",
|
|
bindKey: bindKey("Ctrl-Shift-U", "Ctrl-Shift-U"),
|
|
exec: function(editor) { editor.toLowerCase(); },
|
|
multiSelectAction: "forEach"
|
|
}];
|
|
|
|
});
|