0

通常、ace-editor では、Alt キーを押しながら選択すると、ブロック選択と呼ばれるブロック形式で選択されます。

標準としてブロック選択になるようにするにはどうすればよいですか。altを押すと、代わりに通常の選択に変わります。

これと何か関係があると思います

function onMouseDown(e) {
var ev = e.domEvent;
var alt = ev.altKey;
var shift = ev.shiftKey;
var ctrl = e.getAccelKey();
var button = e.getButton();

var editor = e.editor;
var selection = editor.selection;
var isMultiSelect = editor.inMultiSelectMode;
var pos = e.getDocumentPosition();
var cursor = selection.getCursor();
var inSelection = e.inSelection() || (selection.isEmpty() && isSamePoint(pos, cursor));


var mouseX = e.x, mouseY = e.y;
var onMouseSelection = function(e) {
    mouseX = e.clientX;
    mouseY = e.clientY;
};

var blockSelect = function() {
    var newCursor = editor.renderer.pixelToScreenCoordinates(mouseX, mouseY);
    var cursor = session.screenToDocumentPosition(newCursor.row, newCursor.column);

    if (isSamePoint(screenCursor, newCursor)
        && isSamePoint(cursor, selection.selectionLead))
        return;
    screenCursor = newCursor;

    editor.selection.moveCursorToPosition(cursor);
    editor.selection.clearSelection();
    editor.renderer.scrollCursorIntoView();

    editor.removeSelectionMarkers(rectSel);
    rectSel = selection.rectangularRangeBlock(screenCursor, screenAnchor);
    rectSel.forEach(editor.addSelectionMarker, editor);
    editor.updateSelectionMarkers();
};

これは ace.js の 15479 行と 15528 行の間で見つかりました。

 else if (alt && button == 0) {
    e.stop();

    if (isMultiSelect && !ctrl)
        selection.toSingleRange();
    else if (!isMultiSelect && ctrl)
        selection.addRange();

    var rectSel = [];
    if (shift) {
        screenAnchor = session.documentToScreenPosition(selection.lead);
        blockSelect();
    } else {
        selection.moveCursorToPosition(pos);
        selection.clearSelection();
    }

15561行目、15567行目

4

2 に答える 2

1

この行を変更するのと同じくらい簡単に見えます...

var alt = ev.altKey;

これに...

var alt = !ev.altKey;
于 2013-10-01T08:41:06.930 に答える