861 lines
29 KiB
JavaScript
Executable File
861 lines
29 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");
|
|
var Range = require("../range").Range;
|
|
|
|
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: "goToNextError",
|
|
bindKey: bindKey("Alt-E", "F4"),
|
|
exec: function(editor) {
|
|
config.loadModule("./ext/error_marker", function(module) {
|
|
module.showErrorMarker(editor, 1);
|
|
});
|
|
},
|
|
scrollIntoView: "animate",
|
|
readOnly: true
|
|
}, {
|
|
name: "goToPreviousError",
|
|
bindKey: bindKey("Alt-Shift-E", "Shift-F4"),
|
|
exec: function(editor) {
|
|
config.loadModule("./ext/error_marker", function(module) {
|
|
module.showErrorMarker(editor, -1);
|
|
});
|
|
},
|
|
scrollIntoView: "animate",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectall",
|
|
description: "Select all",
|
|
bindKey: bindKey("Ctrl-A", "Command-A"),
|
|
exec: function(editor) { editor.selectAll(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "centerselection",
|
|
description: "Center selection",
|
|
bindKey: bindKey(null, "Ctrl-L"),
|
|
exec: function(editor) { editor.centerSelection(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoline",
|
|
description: "Go to line...",
|
|
bindKey: bindKey("Ctrl-L", "Command-L"),
|
|
exec: function(editor, line) {
|
|
// backwards compatibility
|
|
if (typeof line === "number" && !isNaN(line))
|
|
editor.gotoLine(line);
|
|
editor.prompt({ $type: "gotoLine" });
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "fold",
|
|
bindKey: bindKey("Alt-L|Ctrl-F1", "Command-Alt-L|Command-F1"),
|
|
exec: function(editor) { editor.session.toggleFold(false); },
|
|
multiSelectAction: "forEach",
|
|
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); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "toggleFoldWidget",
|
|
bindKey: bindKey("F2", "F2"),
|
|
exec: function(editor) { editor.session.toggleFoldWidget(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "toggleParentFoldWidget",
|
|
bindKey: bindKey("Alt-F2", "Alt-F2"),
|
|
exec: function(editor) { editor.session.toggleFoldWidget(true); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "foldall",
|
|
description: "Fold all",
|
|
bindKey: bindKey(null, "Ctrl-Command-Option-0"),
|
|
exec: function(editor) { editor.session.foldAll(); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "foldOther",
|
|
description: "Fold other",
|
|
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",
|
|
description: "Unfold all",
|
|
bindKey: bindKey("Alt-Shift-0", "Command-Option-Shift-0"),
|
|
exec: function(editor) { editor.session.unfold(); },
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "findnext",
|
|
description: "Find next",
|
|
bindKey: bindKey("Ctrl-K", "Command-G"),
|
|
exec: function(editor) { editor.findNext(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "findprevious",
|
|
description: "Find previous",
|
|
bindKey: bindKey("Ctrl-Shift-K", "Command-Shift-G"),
|
|
exec: function(editor) { editor.findPrevious(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "center",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectOrFindNext",
|
|
description: "Select or find next",
|
|
bindKey: bindKey("Alt-K", "Ctrl-G"),
|
|
exec: function(editor) {
|
|
if (editor.selection.isEmpty())
|
|
editor.selection.selectWord();
|
|
else
|
|
editor.findNext();
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "selectOrFindPrevious",
|
|
description: "Select or find previous",
|
|
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",
|
|
description: "Find",
|
|
bindKey: bindKey("Ctrl-F", "Command-F"),
|
|
exec: function(editor) {
|
|
config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor);});
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "overwrite",
|
|
description: "Overwrite",
|
|
bindKey: "Insert",
|
|
exec: function(editor) { editor.toggleOverwrite(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttostart",
|
|
description: "Select to start",
|
|
bindKey: bindKey("Ctrl-Shift-Home", "Command-Shift-Home|Command-Shift-Up"),
|
|
exec: function(editor) { editor.getSelection().selectFileStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
scrollIntoView: "animate",
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "gotostart",
|
|
description: "Go to start",
|
|
bindKey: bindKey("Ctrl-Home", "Command-Home|Command-Up"),
|
|
exec: function(editor) { editor.navigateFileStart(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
scrollIntoView: "animate",
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "selectup",
|
|
description: "Select up",
|
|
bindKey: bindKey("Shift-Up", "Shift-Up|Ctrl-Shift-P"),
|
|
exec: function(editor) { editor.getSelection().selectUp(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "golineup",
|
|
description: "Go line up",
|
|
bindKey: bindKey("Up", "Up|Ctrl-P"),
|
|
exec: function(editor, args) { editor.navigateUp(args.times); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttoend",
|
|
description: "Select to end",
|
|
bindKey: bindKey("Ctrl-Shift-End", "Command-Shift-End|Command-Shift-Down"),
|
|
exec: function(editor) { editor.getSelection().selectFileEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
scrollIntoView: "animate",
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "gotoend",
|
|
description: "Go to end",
|
|
bindKey: bindKey("Ctrl-End", "Command-End|Command-Down"),
|
|
exec: function(editor) { editor.navigateFileEnd(); },
|
|
multiSelectAction: "forEach",
|
|
readOnly: true,
|
|
scrollIntoView: "animate",
|
|
aceCommandGroup: "fileJump"
|
|
}, {
|
|
name: "selectdown",
|
|
description: "Select down",
|
|
bindKey: bindKey("Shift-Down", "Shift-Down|Ctrl-Shift-N"),
|
|
exec: function(editor) { editor.getSelection().selectDown(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "golinedown",
|
|
description: "Go line down",
|
|
bindKey: bindKey("Down", "Down|Ctrl-N"),
|
|
exec: function(editor, args) { editor.navigateDown(args.times); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectwordleft",
|
|
description: "Select word left",
|
|
bindKey: bindKey("Ctrl-Shift-Left", "Option-Shift-Left"),
|
|
exec: function(editor) { editor.getSelection().selectWordLeft(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotowordleft",
|
|
description: "Go to word left",
|
|
bindKey: bindKey("Ctrl-Left", "Option-Left"),
|
|
exec: function(editor) { editor.navigateWordLeft(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttolinestart",
|
|
description: "Select to line start",
|
|
bindKey: bindKey("Alt-Shift-Left", "Command-Shift-Left|Ctrl-Shift-A"),
|
|
exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotolinestart",
|
|
description: "Go to line start",
|
|
bindKey: bindKey("Alt-Left|Home", "Command-Left|Home|Ctrl-A"),
|
|
exec: function(editor) { editor.navigateLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectleft",
|
|
description: "Select left",
|
|
bindKey: bindKey("Shift-Left", "Shift-Left|Ctrl-Shift-B"),
|
|
exec: function(editor) { editor.getSelection().selectLeft(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoleft",
|
|
description: "Go to left",
|
|
bindKey: bindKey("Left", "Left|Ctrl-B"),
|
|
exec: function(editor, args) { editor.navigateLeft(args.times); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectwordright",
|
|
description: "Select word right",
|
|
bindKey: bindKey("Ctrl-Shift-Right", "Option-Shift-Right"),
|
|
exec: function(editor) { editor.getSelection().selectWordRight(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotowordright",
|
|
description: "Go to word right",
|
|
bindKey: bindKey("Ctrl-Right", "Option-Right"),
|
|
exec: function(editor) { editor.navigateWordRight(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttolineend",
|
|
description: "Select to line end",
|
|
bindKey: bindKey("Alt-Shift-Right", "Command-Shift-Right|Shift-End|Ctrl-Shift-E"),
|
|
exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotolineend",
|
|
description: "Go to line end",
|
|
bindKey: bindKey("Alt-Right|End", "Command-Right|End|Ctrl-E"),
|
|
exec: function(editor) { editor.navigateLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectright",
|
|
description: "Select right",
|
|
bindKey: bindKey("Shift-Right", "Shift-Right"),
|
|
exec: function(editor) { editor.getSelection().selectRight(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "gotoright",
|
|
description: "Go to right",
|
|
bindKey: bindKey("Right", "Right|Ctrl-F"),
|
|
exec: function(editor, args) { editor.navigateRight(args.times); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectpagedown",
|
|
description: "Select page down",
|
|
bindKey: "Shift-PageDown",
|
|
exec: function(editor) { editor.selectPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "pagedown",
|
|
description: "Page down",
|
|
bindKey: bindKey(null, "Option-PageDown"),
|
|
exec: function(editor) { editor.scrollPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotopagedown",
|
|
description: "Go to page down",
|
|
bindKey: bindKey("PageDown", "PageDown|Ctrl-V"),
|
|
exec: function(editor) { editor.gotoPageDown(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selectpageup",
|
|
description: "Select page up",
|
|
bindKey: "Shift-PageUp",
|
|
exec: function(editor) { editor.selectPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "pageup",
|
|
description: "Page up",
|
|
bindKey: bindKey(null, "Option-PageUp"),
|
|
exec: function(editor) { editor.scrollPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "gotopageup",
|
|
description: "Go to page up",
|
|
bindKey: "PageUp",
|
|
exec: function(editor) { editor.gotoPageUp(); },
|
|
readOnly: true
|
|
}, {
|
|
name: "scrollup",
|
|
description: "Scroll up",
|
|
bindKey: bindKey("Ctrl-Up", null),
|
|
exec: function(e) { e.renderer.scrollBy(0, -2 * e.renderer.layerConfig.lineHeight); },
|
|
readOnly: true
|
|
}, {
|
|
name: "scrolldown",
|
|
description: "Scroll down",
|
|
bindKey: bindKey("Ctrl-Down", null),
|
|
exec: function(e) { e.renderer.scrollBy(0, 2 * e.renderer.layerConfig.lineHeight); },
|
|
readOnly: true
|
|
}, {
|
|
name: "selectlinestart",
|
|
description: "Select line start",
|
|
bindKey: "Shift-Home",
|
|
exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "selectlineend",
|
|
description: "Select line end",
|
|
bindKey: "Shift-End",
|
|
exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "togglerecording",
|
|
description: "Toggle recording",
|
|
bindKey: bindKey("Ctrl-Alt-E", "Command-Option-E"),
|
|
exec: function(editor) { editor.commands.toggleRecording(editor); },
|
|
readOnly: true
|
|
}, {
|
|
name: "replaymacro",
|
|
description: "Replay macro",
|
|
bindKey: bindKey("Ctrl-Shift-E", "Command-Shift-E"),
|
|
exec: function(editor) { editor.commands.replay(editor); },
|
|
readOnly: true
|
|
}, {
|
|
name: "jumptomatching",
|
|
description: "Jump to matching",
|
|
bindKey: bindKey("Ctrl-P", "Ctrl-P"),
|
|
exec: function(editor) { editor.jumpToMatching(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "animate",
|
|
readOnly: true
|
|
}, {
|
|
name: "selecttomatching",
|
|
description: "Select to matching",
|
|
bindKey: bindKey("Ctrl-Shift-P", "Ctrl-Shift-P"),
|
|
exec: function(editor) { editor.jumpToMatching(true); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "animate",
|
|
readOnly: true
|
|
}, {
|
|
name: "expandToMatching",
|
|
description: "Expand to matching",
|
|
bindKey: bindKey("Ctrl-Shift-M", "Ctrl-Shift-M"),
|
|
exec: function(editor) { editor.jumpToMatching(true, true); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "animate",
|
|
readOnly: true
|
|
}, {
|
|
name: "passKeysToBrowser",
|
|
description: "Pass keys to browser",
|
|
bindKey: bindKey(null, null),
|
|
exec: function() {},
|
|
passEvent: true,
|
|
readOnly: true
|
|
}, {
|
|
name: "copy",
|
|
description: "Copy",
|
|
exec: function(editor) {
|
|
// placeholder for replay macro
|
|
},
|
|
readOnly: true
|
|
},
|
|
|
|
// commands disabled in readOnly mode
|
|
{
|
|
name: "cut",
|
|
description: "Cut",
|
|
exec: function(editor) {
|
|
var cutLine = editor.$copyWithEmptySelection && editor.selection.isEmpty();
|
|
var range = cutLine ? editor.selection.getLineRange() : editor.selection.getRange();
|
|
editor._emit("cut", range);
|
|
|
|
if (!range.isEmpty())
|
|
editor.session.remove(range);
|
|
editor.clearSelection();
|
|
},
|
|
scrollIntoView: "cursor",
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "paste",
|
|
description: "Paste",
|
|
exec: function(editor, args) {
|
|
editor.$handlePaste(args);
|
|
},
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removeline",
|
|
description: "Remove line",
|
|
bindKey: bindKey("Ctrl-D", "Command-D"),
|
|
exec: function(editor) { editor.removeLines(); },
|
|
scrollIntoView: "cursor",
|
|
multiSelectAction: "forEachLine"
|
|
}, {
|
|
name: "duplicateSelection",
|
|
description: "Duplicate selection",
|
|
bindKey: bindKey("Ctrl-Shift-D", "Command-Shift-D"),
|
|
exec: function(editor) { editor.duplicateSelection(); },
|
|
scrollIntoView: "cursor",
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "sortlines",
|
|
description: "Sort lines",
|
|
bindKey: bindKey("Ctrl-Alt-S", "Command-Alt-S"),
|
|
exec: function(editor) { editor.sortLines(); },
|
|
scrollIntoView: "selection",
|
|
multiSelectAction: "forEachLine"
|
|
}, {
|
|
name: "togglecomment",
|
|
description: "Toggle comment",
|
|
bindKey: bindKey("Ctrl-/", "Command-/"),
|
|
exec: function(editor) { editor.toggleCommentLines(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "toggleBlockComment",
|
|
description: "Toggle block comment",
|
|
bindKey: bindKey("Ctrl-Shift-/", "Command-Shift-/"),
|
|
exec: function(editor) { editor.toggleBlockComment(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "modifyNumberUp",
|
|
description: "Modify number up",
|
|
bindKey: bindKey("Ctrl-Shift-Up", "Alt-Shift-Up"),
|
|
exec: function(editor) { editor.modifyNumber(1); },
|
|
scrollIntoView: "cursor",
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "modifyNumberDown",
|
|
description: "Modify number down",
|
|
bindKey: bindKey("Ctrl-Shift-Down", "Alt-Shift-Down"),
|
|
exec: function(editor) { editor.modifyNumber(-1); },
|
|
scrollIntoView: "cursor",
|
|
multiSelectAction: "forEach"
|
|
}, {
|
|
name: "replace",
|
|
description: "Replace",
|
|
bindKey: bindKey("Ctrl-H", "Command-Option-F"),
|
|
exec: function(editor) {
|
|
config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor, true);});
|
|
}
|
|
}, {
|
|
name: "undo",
|
|
description: "Undo",
|
|
bindKey: bindKey("Ctrl-Z", "Command-Z"),
|
|
exec: function(editor) { editor.undo(); }
|
|
}, {
|
|
name: "redo",
|
|
description: "Redo",
|
|
bindKey: bindKey("Ctrl-Shift-Z|Ctrl-Y", "Command-Shift-Z|Command-Y"),
|
|
exec: function(editor) { editor.redo(); }
|
|
}, {
|
|
name: "copylinesup",
|
|
description: "Copy lines up",
|
|
bindKey: bindKey("Alt-Shift-Up", "Command-Option-Up"),
|
|
exec: function(editor) { editor.copyLinesUp(); },
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "movelinesup",
|
|
description: "Move lines up",
|
|
bindKey: bindKey("Alt-Up", "Option-Up"),
|
|
exec: function(editor) { editor.moveLinesUp(); },
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "copylinesdown",
|
|
description: "Copy lines down",
|
|
bindKey: bindKey("Alt-Shift-Down", "Command-Option-Down"),
|
|
exec: function(editor) { editor.copyLinesDown(); },
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "movelinesdown",
|
|
description: "Move lines down",
|
|
bindKey: bindKey("Alt-Down", "Option-Down"),
|
|
exec: function(editor) { editor.moveLinesDown(); },
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "del",
|
|
description: "Delete",
|
|
bindKey: bindKey("Delete", "Delete|Ctrl-D|Shift-Delete"),
|
|
exec: function(editor) { editor.remove("right"); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "backspace",
|
|
description: "Backspace",
|
|
bindKey: bindKey(
|
|
"Shift-Backspace|Backspace",
|
|
"Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"
|
|
),
|
|
exec: function(editor) { editor.remove("left"); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "cut_or_delete",
|
|
description: "Cut or delete",
|
|
bindKey: bindKey("Shift-Delete", null),
|
|
exec: function(editor) {
|
|
if (editor.selection.isEmpty()) {
|
|
editor.remove("left");
|
|
} else {
|
|
return false;
|
|
}
|
|
},
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removetolinestart",
|
|
description: "Remove to line start",
|
|
bindKey: bindKey("Alt-Backspace", "Command-Backspace"),
|
|
exec: function(editor) { editor.removeToLineStart(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removetolineend",
|
|
description: "Remove to line end",
|
|
bindKey: bindKey("Alt-Delete", "Ctrl-K|Command-Delete"),
|
|
exec: function(editor) { editor.removeToLineEnd(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removetolinestarthard",
|
|
description: "Remove to line start hard",
|
|
bindKey: bindKey("Ctrl-Shift-Backspace", null),
|
|
exec: function(editor) {
|
|
var range = editor.selection.getRange();
|
|
range.start.column = 0;
|
|
editor.session.remove(range);
|
|
},
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removetolineendhard",
|
|
description: "Remove to line end hard",
|
|
bindKey: bindKey("Ctrl-Shift-Delete", null),
|
|
exec: function(editor) {
|
|
var range = editor.selection.getRange();
|
|
range.end.column = Number.MAX_VALUE;
|
|
editor.session.remove(range);
|
|
},
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removewordleft",
|
|
description: "Remove word left",
|
|
bindKey: bindKey("Ctrl-Backspace", "Alt-Backspace|Ctrl-Alt-Backspace"),
|
|
exec: function(editor) { editor.removeWordLeft(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "removewordright",
|
|
description: "Remove word right",
|
|
bindKey: bindKey("Ctrl-Delete", "Alt-Delete"),
|
|
exec: function(editor) { editor.removeWordRight(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "outdent",
|
|
description: "Outdent",
|
|
bindKey: bindKey("Shift-Tab", "Shift-Tab"),
|
|
exec: function(editor) { editor.blockOutdent(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "indent",
|
|
description: "Indent",
|
|
bindKey: bindKey("Tab", "Tab"),
|
|
exec: function(editor) { editor.indent(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "blockoutdent",
|
|
description: "Block outdent",
|
|
bindKey: bindKey("Ctrl-[", "Ctrl-["),
|
|
exec: function(editor) { editor.blockOutdent(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "blockindent",
|
|
description: "Block indent",
|
|
bindKey: bindKey("Ctrl-]", "Ctrl-]"),
|
|
exec: function(editor) { editor.blockIndent(); },
|
|
multiSelectAction: "forEachLine",
|
|
scrollIntoView: "selectionPart"
|
|
}, {
|
|
name: "insertstring",
|
|
description: "Insert string",
|
|
exec: function(editor, str) { editor.insert(str); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "inserttext",
|
|
description: "Insert text",
|
|
exec: function(editor, args) {
|
|
editor.insert(lang.stringRepeat(args.text || "", args.times || 1));
|
|
},
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "splitline",
|
|
description: "Split line",
|
|
bindKey: bindKey(null, "Ctrl-O"),
|
|
exec: function(editor) { editor.splitLine(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "transposeletters",
|
|
description: "Transpose letters",
|
|
bindKey: bindKey("Alt-Shift-X", "Ctrl-T"),
|
|
exec: function(editor) { editor.transposeLetters(); },
|
|
multiSelectAction: function(editor) {editor.transposeSelections(1); },
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "touppercase",
|
|
description: "To uppercase",
|
|
bindKey: bindKey("Ctrl-U", "Ctrl-U"),
|
|
exec: function(editor) { editor.toUpperCase(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "tolowercase",
|
|
description: "To lowercase",
|
|
bindKey: bindKey("Ctrl-Shift-U", "Ctrl-Shift-U"),
|
|
exec: function(editor) { editor.toLowerCase(); },
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor"
|
|
}, {
|
|
name: "expandtoline",
|
|
description: "Expand to line",
|
|
bindKey: bindKey("Ctrl-Shift-L", "Command-Shift-L"),
|
|
exec: function(editor) {
|
|
var range = editor.selection.getRange();
|
|
|
|
range.start.column = range.end.column = 0;
|
|
range.end.row++;
|
|
editor.selection.setRange(range, false);
|
|
},
|
|
multiSelectAction: "forEach",
|
|
scrollIntoView: "cursor",
|
|
readOnly: true
|
|
}, {
|
|
name: "joinlines",
|
|
description: "Join lines",
|
|
bindKey: bindKey(null, null),
|
|
exec: function(editor) {
|
|
var isBackwards = editor.selection.isBackwards();
|
|
var selectionStart = isBackwards ? editor.selection.getSelectionLead() : editor.selection.getSelectionAnchor();
|
|
var selectionEnd = isBackwards ? editor.selection.getSelectionAnchor() : editor.selection.getSelectionLead();
|
|
var firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length;
|
|
var selectedText = editor.session.doc.getTextRange(editor.selection.getRange());
|
|
var selectedCount = selectedText.replace(/\n\s*/, " ").length;
|
|
var insertLine = editor.session.doc.getLine(selectionStart.row);
|
|
|
|
for (var i = selectionStart.row + 1; i <= selectionEnd.row + 1; i++) {
|
|
var curLine = lang.stringTrimLeft(lang.stringTrimRight(editor.session.doc.getLine(i)));
|
|
if (curLine.length !== 0) {
|
|
curLine = " " + curLine;
|
|
}
|
|
insertLine += curLine;
|
|
}
|
|
|
|
if (selectionEnd.row + 1 < (editor.session.doc.getLength() - 1)) {
|
|
// Don't insert a newline at the end of the document
|
|
insertLine += editor.session.doc.getNewLineCharacter();
|
|
}
|
|
|
|
editor.clearSelection();
|
|
editor.session.doc.replace(new Range(selectionStart.row, 0, selectionEnd.row + 2, 0), insertLine);
|
|
|
|
if (selectedCount > 0) {
|
|
// Select the text that was previously selected
|
|
editor.selection.moveCursorTo(selectionStart.row, selectionStart.column);
|
|
editor.selection.selectTo(selectionStart.row, selectionStart.column + selectedCount);
|
|
} else {
|
|
// If the joined line had something in it, start the cursor at that something
|
|
firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length > firstLineEndCol ? (firstLineEndCol + 1) : firstLineEndCol;
|
|
editor.selection.moveCursorTo(selectionStart.row, firstLineEndCol);
|
|
}
|
|
},
|
|
multiSelectAction: "forEach",
|
|
readOnly: true
|
|
}, {
|
|
name: "invertSelection",
|
|
description: "Invert selection",
|
|
bindKey: bindKey(null, null),
|
|
exec: function(editor) {
|
|
var endRow = editor.session.doc.getLength() - 1;
|
|
var endCol = editor.session.doc.getLine(endRow).length;
|
|
var ranges = editor.selection.rangeList.ranges;
|
|
var newRanges = [];
|
|
|
|
// If multiple selections don't exist, rangeList will return 0 so replace with single range
|
|
if (ranges.length < 1) {
|
|
ranges = [editor.selection.getRange()];
|
|
}
|
|
|
|
for (var i = 0; i < ranges.length; i++) {
|
|
if (i == (ranges.length - 1)) {
|
|
// The last selection must connect to the end of the document, unless it already does
|
|
if (!(ranges[i].end.row === endRow && ranges[i].end.column === endCol)) {
|
|
newRanges.push(new Range(ranges[i].end.row, ranges[i].end.column, endRow, endCol));
|
|
}
|
|
}
|
|
|
|
if (i === 0) {
|
|
// The first selection must connect to the start of the document, unless it already does
|
|
if (!(ranges[i].start.row === 0 && ranges[i].start.column === 0)) {
|
|
newRanges.push(new Range(0, 0, ranges[i].start.row, ranges[i].start.column));
|
|
}
|
|
} else {
|
|
newRanges.push(new Range(ranges[i-1].end.row, ranges[i-1].end.column, ranges[i].start.row, ranges[i].start.column));
|
|
}
|
|
}
|
|
|
|
editor.exitMultiSelectMode();
|
|
editor.clearSelection();
|
|
|
|
for(var i = 0; i < newRanges.length; i++) {
|
|
editor.selection.addRange(newRanges[i], false);
|
|
}
|
|
},
|
|
readOnly: true,
|
|
scrollIntoView: "none"
|
|
}, {
|
|
name: "openCommandPallete",
|
|
description: "Open command pallete",
|
|
bindKey: bindKey("F1", "F1"),
|
|
exec: function(editor) {
|
|
editor.prompt({ $type: "commands" });
|
|
},
|
|
readOnly: true
|
|
}, {
|
|
name: "modeSelect",
|
|
description: "Change language mode...",
|
|
bindKey: bindKey(null, null),
|
|
exec: function(editor) {
|
|
editor.prompt({ $type: "modes" });
|
|
},
|
|
readOnly: true
|
|
}];
|
|
|
|
});
|