2013-09-14 16:59:40 +00:00
|
|
|
/* ***** 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("ace/lib/lang");
|
|
|
|
var config = require("ace/config");
|
2013-10-19 22:59:17 +00:00
|
|
|
var Range = require('ace/range').Range
|
2013-09-14 16:59:40 +00:00
|
|
|
|
|
|
|
function bindKey(win, mac) {
|
|
|
|
return {
|
|
|
|
win: win,
|
|
|
|
mac: mac
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.commands = [{
|
|
|
|
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
|
|
|
|
}, {
|
|
|
|
name: "gotostart",
|
|
|
|
bindKey: bindKey("Ctrl-Home", "Command-Home|Command-Up"),
|
|
|
|
exec: function(editor) { editor.navigateFileStart(); },
|
|
|
|
multiSelectAction: "forEach",
|
|
|
|
readOnly: true
|
|
|
|
}, {
|
|
|
|
name: "selectup",
|
|
|
|
bindKey: bindKey("Shift-Up", "Shift-Up"),
|
|
|
|
exec: function(editor) { editor.getSelection().selectUp(); },
|
|
|
|
multiSelectAction: "forEach",
|
|
|
|
readOnly: true
|
|
|
|
}, {
|
|
|
|
name: "golineup",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Up", "Up"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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
|
|
|
|
}, {
|
|
|
|
name: "gotoend",
|
|
|
|
bindKey: bindKey("Ctrl-End", "Command-End|Command-Down"),
|
|
|
|
exec: function(editor) { editor.navigateFileEnd(); },
|
|
|
|
multiSelectAction: "forEach",
|
|
|
|
readOnly: true
|
|
|
|
}, {
|
|
|
|
name: "selectdown",
|
|
|
|
bindKey: bindKey("Shift-Down", "Shift-Down"),
|
|
|
|
exec: function(editor) { editor.getSelection().selectDown(); },
|
|
|
|
multiSelectAction: "forEach",
|
|
|
|
readOnly: true
|
|
|
|
}, {
|
|
|
|
name: "golinedown",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Down", "Down"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Alt-Left|Home", "Command-Left|Home"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Left", "Left"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Alt-Right|End", "Command-Right|End"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("Right", "Right"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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",
|
2013-09-29 22:28:59 +00:00
|
|
|
bindKey: bindKey("PageDown", "PageDown"),
|
2013-09-14 16:59:40 +00:00
|
|
|
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
|
|
|
|
},
|
|
|
|
|
|
|
|
// 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: "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: "del",
|
|
|
|
bindKey: bindKey("Delete", "Delete|Ctrl-D"),
|
|
|
|
exec: function(editor) { editor.remove("right"); },
|
|
|
|
multiSelectAction: "forEach"
|
|
|
|
}, {
|
|
|
|
name: "backspace",
|
|
|
|
bindKey: bindKey(
|
|
|
|
"Command-Backspace|Option-Backspace|Shift-Backspace|Backspace",
|
|
|
|
"Ctrl-Backspace|Command-Backspace|Shift-Backspace|Backspace|Ctrl-H"
|
|
|
|
),
|
|
|
|
exec: function(editor) { editor.remove("left"); },
|
|
|
|
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"
|
|
|
|
}, {
|
|
|
|
name: "indent",
|
|
|
|
bindKey: bindKey("Tab", "Tab"),
|
2013-10-19 16:37:16 +00:00
|
|
|
exec: function(editor) {
|
2013-10-19 22:59:17 +00:00
|
|
|
// Perform block indent if the caret is at the begining of a list item
|
|
|
|
var selectionRange = editor.getSelectionRange();
|
|
|
|
var range = new Range(selectionRange.end.row, 0, selectionRange.end.row, selectionRange.end.column);
|
|
|
|
var startText = editor.session.getTextRange(range);
|
|
|
|
var token = editor.session.getTokenAt(selectionRange.end.row, selectionRange.end.column);
|
2013-10-22 22:16:05 +00:00
|
|
|
if(token && token.type == "markup.list" && /^\s*(?:[-+*]|\d+\.)\s+$/.test(startText)) {
|
2013-10-19 16:37:16 +00:00
|
|
|
editor.blockIndent();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
editor.indent();
|
|
|
|
}
|
|
|
|
},
|
2013-09-14 16:59:40 +00:00
|
|
|
multiSelectAction: "forEach"
|
|
|
|
}, {
|
|
|
|
name: "insertstring",
|
|
|
|
exec: function(editor, str) { editor.insert(str); },
|
|
|
|
multiSelectAction: "forEach"
|
|
|
|
}, {
|
|
|
|
name: "inserttext",
|
|
|
|
exec: function(editor, args) {
|
|
|
|
editor.insert(lang.stringRepeat(args.text || "", args.times || 1));
|
|
|
|
},
|
|
|
|
multiSelectAction: "forEach"
|
|
|
|
}];
|
|
|
|
|
|
|
|
});
|