mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 02:09:22 +02:00
Libs updates and new version with option to pin videos on channel
This commit is contained in:
parent
e1f2188de0
commit
1beab3b1c0
8565 changed files with 149805 additions and 165674 deletions
24
node_modules/@codemirror/commands/CHANGELOG.md
generated
vendored
24
node_modules/@codemirror/commands/CHANGELOG.md
generated
vendored
|
@ -1,3 +1,27 @@
|
|||
## 6.6.0 (2024-06-04)
|
||||
|
||||
### New features
|
||||
|
||||
The new `toggleTabFocusMode` and `temporarilySetTabFocusMode` commands provide control over the view's tab-focus mode.
|
||||
|
||||
The default keymap now binds Ctrl-m (Shift-Alt-m on macOS) to `toggleTabFocusMode`.
|
||||
|
||||
## 6.5.0 (2024-04-19)
|
||||
|
||||
### New features
|
||||
|
||||
The `insertNewlineKeepIndent` command inserts a newline along with the same indentation as the line before.
|
||||
|
||||
## 6.4.0 (2024-04-17)
|
||||
|
||||
### Bug fixes
|
||||
|
||||
Fix an issue where `deleteLine` sometimes leaves the cursor on the wrong line.
|
||||
|
||||
### New features
|
||||
|
||||
The new `deleteCharBackwardStrict` command just deletes a character, without further smart behavior around indentation.
|
||||
|
||||
## 6.3.3 (2023-12-28)
|
||||
|
||||
### Bug fixes
|
||||
|
|
70
node_modules/@codemirror/commands/dist/index.cjs
generated
vendored
70
node_modules/@codemirror/commands/dist/index.cjs
generated
vendored
|
@ -1082,9 +1082,9 @@ function skipAtomic(target, pos, forward) {
|
|||
});
|
||||
return pos;
|
||||
}
|
||||
const deleteByChar = (target, forward) => deleteBy(target, range => {
|
||||
const deleteByChar = (target, forward, byIndentUnit) => deleteBy(target, range => {
|
||||
let pos = range.from, { state: state$1 } = target, line = state$1.doc.lineAt(pos), before, targetPos;
|
||||
if (!forward && pos > line.from && pos < line.from + 200 &&
|
||||
if (byIndentUnit && !forward && pos > line.from && pos < line.from + 200 &&
|
||||
!/[^ \t]/.test(before = line.text.slice(0, pos - line.from))) {
|
||||
if (before[before.length - 1] == "\t")
|
||||
return pos - 1;
|
||||
|
@ -1103,14 +1103,20 @@ const deleteByChar = (target, forward) => deleteBy(target, range => {
|
|||
return targetPos;
|
||||
});
|
||||
/**
|
||||
Delete the selection, or, for cursor selections, the character
|
||||
before the cursor.
|
||||
Delete the selection, or, for cursor selections, the character or
|
||||
indentation unit before the cursor.
|
||||
*/
|
||||
const deleteCharBackward = view => deleteByChar(view, false);
|
||||
const deleteCharBackward = view => deleteByChar(view, false, true);
|
||||
/**
|
||||
Delete the selection or the character before the cursor. Does not
|
||||
implement any extended behavior like deleting whole indentation
|
||||
units in one go.
|
||||
*/
|
||||
const deleteCharBackwardStrict = view => deleteByChar(view, false, false);
|
||||
/**
|
||||
Delete the selection or the character after the cursor.
|
||||
*/
|
||||
const deleteCharForward = view => deleteByChar(view, true);
|
||||
const deleteCharForward = view => deleteByChar(view, true, false);
|
||||
const deleteByGroup = (target, forward) => deleteBy(target, range => {
|
||||
let pos = range.head, { state: state$1 } = target, line = state$1.doc.lineAt(pos);
|
||||
let categorize = state$1.charCategorizer(pos);
|
||||
|
@ -1327,7 +1333,15 @@ const deleteLine = view => {
|
|||
to++;
|
||||
return { from, to };
|
||||
}));
|
||||
let selection = updateSel(state.selection, range => view.moveVertically(range, true)).map(changes);
|
||||
let selection = updateSel(state.selection, range => {
|
||||
let dist = undefined;
|
||||
if (view.lineWrapping) {
|
||||
let block = view.lineBlockAt(range.head), pos = view.coordsAtPos(range.head, range.assoc || 1);
|
||||
if (pos)
|
||||
dist = (block.bottom + view.documentTop) - pos.bottom + view.defaultLineHeight / 2;
|
||||
}
|
||||
return view.moveVertically(range, true, dist);
|
||||
}).map(changes);
|
||||
view.dispatch({ changes, selection, scrollIntoView: true, userEvent: "delete.line" });
|
||||
return true;
|
||||
};
|
||||
|
@ -1338,6 +1352,20 @@ const insertNewline = ({ state, dispatch }) => {
|
|||
dispatch(state.update(state.replaceSelection(state.lineBreak), { scrollIntoView: true, userEvent: "input" }));
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Replace the selection with a newline and the same amount of
|
||||
indentation as the line above.
|
||||
*/
|
||||
const insertNewlineKeepIndent = ({ state: state$1, dispatch }) => {
|
||||
dispatch(state$1.update(state$1.changeByRange(range => {
|
||||
let indent = /^\s*/.exec(state$1.doc.lineAt(range.from).text)[0];
|
||||
return {
|
||||
changes: { from: range.from, to: range.to, insert: state$1.lineBreak + indent },
|
||||
range: state.EditorSelection.cursor(range.from + indent.length + 1)
|
||||
};
|
||||
}), { scrollIntoView: true, userEvent: "input" }));
|
||||
return true;
|
||||
};
|
||||
function isBetweenBrackets(state, pos) {
|
||||
if (/\(\)|\[\]|\{\}/.test(state.sliceDoc(pos - 1, pos + 1)))
|
||||
return { from: pos, to: pos };
|
||||
|
@ -1470,6 +1498,26 @@ const indentLess = ({ state: state$1, dispatch }) => {
|
|||
return true;
|
||||
};
|
||||
/**
|
||||
Enables or disables
|
||||
[tab-focus mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode). While on, this
|
||||
prevents the editor's key bindings from capturing Tab or
|
||||
Shift-Tab, making it possible for the user to move focus out of
|
||||
the editor with the keyboard.
|
||||
*/
|
||||
const toggleTabFocusMode = view => {
|
||||
view.setTabFocusMode();
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Temporarily enables [tab-focus
|
||||
mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode) for two seconds or until
|
||||
another key is pressed.
|
||||
*/
|
||||
const temporarilySetTabFocusMode = view => {
|
||||
view.setTabFocusMode(2000);
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Insert a tab character at the cursor or, if something is selected,
|
||||
use [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) to indent the entire
|
||||
selection.
|
||||
|
@ -1596,6 +1644,7 @@ The default keymap. Includes all bindings from
|
|||
- Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](https://codemirror.net/6/docs/ref/#commands.cursorMatchingBracket)
|
||||
- Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](https://codemirror.net/6/docs/ref/#commands.toggleComment).
|
||||
- Shift-Alt-a: [`toggleBlockComment`](https://codemirror.net/6/docs/ref/#commands.toggleBlockComment).
|
||||
- Ctrl-m (Alt-Shift-m on macOS): [`toggleTabFocusMode`](https://codemirror.net/6/docs/ref/#commands.toggleTabFocusMode).
|
||||
*/
|
||||
const defaultKeymap = [
|
||||
{ key: "Alt-ArrowLeft", mac: "Ctrl-ArrowLeft", run: cursorSyntaxLeft, shift: selectSyntaxLeft },
|
||||
|
@ -1614,7 +1663,8 @@ const defaultKeymap = [
|
|||
{ key: "Shift-Mod-k", run: deleteLine },
|
||||
{ key: "Shift-Mod-\\", run: cursorMatchingBracket },
|
||||
{ key: "Mod-/", run: toggleComment },
|
||||
{ key: "Alt-A", run: toggleBlockComment }
|
||||
{ key: "Alt-A", run: toggleBlockComment },
|
||||
{ key: "Ctrl-m", mac: "Shift-Alt-m", run: toggleTabFocusMode },
|
||||
].concat(standardKeymap);
|
||||
/**
|
||||
A binding that binds Tab to [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) and
|
||||
|
@ -1655,6 +1705,7 @@ exports.cursorSyntaxLeft = cursorSyntaxLeft;
|
|||
exports.cursorSyntaxRight = cursorSyntaxRight;
|
||||
exports.defaultKeymap = defaultKeymap;
|
||||
exports.deleteCharBackward = deleteCharBackward;
|
||||
exports.deleteCharBackwardStrict = deleteCharBackwardStrict;
|
||||
exports.deleteCharForward = deleteCharForward;
|
||||
exports.deleteGroupBackward = deleteGroupBackward;
|
||||
exports.deleteGroupForward = deleteGroupForward;
|
||||
|
@ -1675,6 +1726,7 @@ exports.indentWithTab = indentWithTab;
|
|||
exports.insertBlankLine = insertBlankLine;
|
||||
exports.insertNewline = insertNewline;
|
||||
exports.insertNewlineAndIndent = insertNewlineAndIndent;
|
||||
exports.insertNewlineKeepIndent = insertNewlineKeepIndent;
|
||||
exports.insertTab = insertTab;
|
||||
exports.invertedEffects = invertedEffects;
|
||||
exports.isolateHistory = isolateHistory;
|
||||
|
@ -1716,10 +1768,12 @@ exports.selectSyntaxRight = selectSyntaxRight;
|
|||
exports.simplifySelection = simplifySelection;
|
||||
exports.splitLine = splitLine;
|
||||
exports.standardKeymap = standardKeymap;
|
||||
exports.temporarilySetTabFocusMode = temporarilySetTabFocusMode;
|
||||
exports.toggleBlockComment = toggleBlockComment;
|
||||
exports.toggleBlockCommentByLine = toggleBlockCommentByLine;
|
||||
exports.toggleComment = toggleComment;
|
||||
exports.toggleLineComment = toggleLineComment;
|
||||
exports.toggleTabFocusMode = toggleTabFocusMode;
|
||||
exports.transposeChars = transposeChars;
|
||||
exports.undo = undo;
|
||||
exports.undoDepth = undoDepth;
|
||||
|
|
32
node_modules/@codemirror/commands/dist/index.d.cts
generated
vendored
32
node_modules/@codemirror/commands/dist/index.d.cts
generated
vendored
|
@ -376,11 +376,17 @@ non-empty, convert it to a cursor selection.
|
|||
*/
|
||||
declare const simplifySelection: StateCommand;
|
||||
/**
|
||||
Delete the selection, or, for cursor selections, the character
|
||||
before the cursor.
|
||||
Delete the selection, or, for cursor selections, the character or
|
||||
indentation unit before the cursor.
|
||||
*/
|
||||
declare const deleteCharBackward: Command;
|
||||
/**
|
||||
Delete the selection or the character before the cursor. Does not
|
||||
implement any extended behavior like deleting whole indentation
|
||||
units in one go.
|
||||
*/
|
||||
declare const deleteCharBackwardStrict: Command;
|
||||
/**
|
||||
Delete the selection or the character after the cursor.
|
||||
*/
|
||||
declare const deleteCharForward: Command;
|
||||
|
@ -455,6 +461,11 @@ Replace the selection with a newline.
|
|||
*/
|
||||
declare const insertNewline: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and the same amount of
|
||||
indentation as the line above.
|
||||
*/
|
||||
declare const insertNewlineKeepIndent: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and indent the newly created
|
||||
line(s). If the current line consists only of whitespace, this
|
||||
will also delete that whitespace. When the cursor is between
|
||||
|
@ -483,6 +494,20 @@ selected lines.
|
|||
*/
|
||||
declare const indentLess: StateCommand;
|
||||
/**
|
||||
Enables or disables
|
||||
[tab-focus mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode). While on, this
|
||||
prevents the editor's key bindings from capturing Tab or
|
||||
Shift-Tab, making it possible for the user to move focus out of
|
||||
the editor with the keyboard.
|
||||
*/
|
||||
declare const toggleTabFocusMode: Command;
|
||||
/**
|
||||
Temporarily enables [tab-focus
|
||||
mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode) for two seconds or until
|
||||
another key is pressed.
|
||||
*/
|
||||
declare const temporarilySetTabFocusMode: Command;
|
||||
/**
|
||||
Insert a tab character at the cursor or, if something is selected,
|
||||
use [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) to indent the entire
|
||||
selection.
|
||||
|
@ -563,6 +588,7 @@ The default keymap. Includes all bindings from
|
|||
- Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](https://codemirror.net/6/docs/ref/#commands.cursorMatchingBracket)
|
||||
- Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](https://codemirror.net/6/docs/ref/#commands.toggleComment).
|
||||
- Shift-Alt-a: [`toggleBlockComment`](https://codemirror.net/6/docs/ref/#commands.toggleBlockComment).
|
||||
- Ctrl-m (Alt-Shift-m on macOS): [`toggleTabFocusMode`](https://codemirror.net/6/docs/ref/#commands.toggleTabFocusMode).
|
||||
*/
|
||||
declare const defaultKeymap: readonly KeyBinding[];
|
||||
/**
|
||||
|
@ -573,4 +599,4 @@ this.
|
|||
*/
|
||||
declare const indentWithTab: KeyBinding;
|
||||
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, transposeChars, undo, undoDepth, undoSelection };
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharBackwardStrict, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertNewlineKeepIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, temporarilySetTabFocusMode, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, toggleTabFocusMode, transposeChars, undo, undoDepth, undoSelection };
|
||||
|
|
32
node_modules/@codemirror/commands/dist/index.d.ts
generated
vendored
32
node_modules/@codemirror/commands/dist/index.d.ts
generated
vendored
|
@ -376,11 +376,17 @@ non-empty, convert it to a cursor selection.
|
|||
*/
|
||||
declare const simplifySelection: StateCommand;
|
||||
/**
|
||||
Delete the selection, or, for cursor selections, the character
|
||||
before the cursor.
|
||||
Delete the selection, or, for cursor selections, the character or
|
||||
indentation unit before the cursor.
|
||||
*/
|
||||
declare const deleteCharBackward: Command;
|
||||
/**
|
||||
Delete the selection or the character before the cursor. Does not
|
||||
implement any extended behavior like deleting whole indentation
|
||||
units in one go.
|
||||
*/
|
||||
declare const deleteCharBackwardStrict: Command;
|
||||
/**
|
||||
Delete the selection or the character after the cursor.
|
||||
*/
|
||||
declare const deleteCharForward: Command;
|
||||
|
@ -455,6 +461,11 @@ Replace the selection with a newline.
|
|||
*/
|
||||
declare const insertNewline: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and the same amount of
|
||||
indentation as the line above.
|
||||
*/
|
||||
declare const insertNewlineKeepIndent: StateCommand;
|
||||
/**
|
||||
Replace the selection with a newline and indent the newly created
|
||||
line(s). If the current line consists only of whitespace, this
|
||||
will also delete that whitespace. When the cursor is between
|
||||
|
@ -483,6 +494,20 @@ selected lines.
|
|||
*/
|
||||
declare const indentLess: StateCommand;
|
||||
/**
|
||||
Enables or disables
|
||||
[tab-focus mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode). While on, this
|
||||
prevents the editor's key bindings from capturing Tab or
|
||||
Shift-Tab, making it possible for the user to move focus out of
|
||||
the editor with the keyboard.
|
||||
*/
|
||||
declare const toggleTabFocusMode: Command;
|
||||
/**
|
||||
Temporarily enables [tab-focus
|
||||
mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode) for two seconds or until
|
||||
another key is pressed.
|
||||
*/
|
||||
declare const temporarilySetTabFocusMode: Command;
|
||||
/**
|
||||
Insert a tab character at the cursor or, if something is selected,
|
||||
use [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) to indent the entire
|
||||
selection.
|
||||
|
@ -563,6 +588,7 @@ The default keymap. Includes all bindings from
|
|||
- Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](https://codemirror.net/6/docs/ref/#commands.cursorMatchingBracket)
|
||||
- Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](https://codemirror.net/6/docs/ref/#commands.toggleComment).
|
||||
- Shift-Alt-a: [`toggleBlockComment`](https://codemirror.net/6/docs/ref/#commands.toggleBlockComment).
|
||||
- Ctrl-m (Alt-Shift-m on macOS): [`toggleTabFocusMode`](https://codemirror.net/6/docs/ref/#commands.toggleTabFocusMode).
|
||||
*/
|
||||
declare const defaultKeymap: readonly KeyBinding[];
|
||||
/**
|
||||
|
@ -573,4 +599,4 @@ this.
|
|||
*/
|
||||
declare const indentWithTab: KeyBinding;
|
||||
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, transposeChars, undo, undoDepth, undoSelection };
|
||||
export { type CommentTokens, blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharBackwardStrict, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertNewlineKeepIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, temporarilySetTabFocusMode, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, toggleTabFocusMode, transposeChars, undo, undoDepth, undoSelection };
|
||||
|
|
68
node_modules/@codemirror/commands/dist/index.js
generated
vendored
68
node_modules/@codemirror/commands/dist/index.js
generated
vendored
|
@ -1080,9 +1080,9 @@ function skipAtomic(target, pos, forward) {
|
|||
});
|
||||
return pos;
|
||||
}
|
||||
const deleteByChar = (target, forward) => deleteBy(target, range => {
|
||||
const deleteByChar = (target, forward, byIndentUnit) => deleteBy(target, range => {
|
||||
let pos = range.from, { state } = target, line = state.doc.lineAt(pos), before, targetPos;
|
||||
if (!forward && pos > line.from && pos < line.from + 200 &&
|
||||
if (byIndentUnit && !forward && pos > line.from && pos < line.from + 200 &&
|
||||
!/[^ \t]/.test(before = line.text.slice(0, pos - line.from))) {
|
||||
if (before[before.length - 1] == "\t")
|
||||
return pos - 1;
|
||||
|
@ -1101,14 +1101,20 @@ const deleteByChar = (target, forward) => deleteBy(target, range => {
|
|||
return targetPos;
|
||||
});
|
||||
/**
|
||||
Delete the selection, or, for cursor selections, the character
|
||||
before the cursor.
|
||||
Delete the selection, or, for cursor selections, the character or
|
||||
indentation unit before the cursor.
|
||||
*/
|
||||
const deleteCharBackward = view => deleteByChar(view, false);
|
||||
const deleteCharBackward = view => deleteByChar(view, false, true);
|
||||
/**
|
||||
Delete the selection or the character before the cursor. Does not
|
||||
implement any extended behavior like deleting whole indentation
|
||||
units in one go.
|
||||
*/
|
||||
const deleteCharBackwardStrict = view => deleteByChar(view, false, false);
|
||||
/**
|
||||
Delete the selection or the character after the cursor.
|
||||
*/
|
||||
const deleteCharForward = view => deleteByChar(view, true);
|
||||
const deleteCharForward = view => deleteByChar(view, true, false);
|
||||
const deleteByGroup = (target, forward) => deleteBy(target, range => {
|
||||
let pos = range.head, { state } = target, line = state.doc.lineAt(pos);
|
||||
let categorize = state.charCategorizer(pos);
|
||||
|
@ -1325,7 +1331,15 @@ const deleteLine = view => {
|
|||
to++;
|
||||
return { from, to };
|
||||
}));
|
||||
let selection = updateSel(state.selection, range => view.moveVertically(range, true)).map(changes);
|
||||
let selection = updateSel(state.selection, range => {
|
||||
let dist = undefined;
|
||||
if (view.lineWrapping) {
|
||||
let block = view.lineBlockAt(range.head), pos = view.coordsAtPos(range.head, range.assoc || 1);
|
||||
if (pos)
|
||||
dist = (block.bottom + view.documentTop) - pos.bottom + view.defaultLineHeight / 2;
|
||||
}
|
||||
return view.moveVertically(range, true, dist);
|
||||
}).map(changes);
|
||||
view.dispatch({ changes, selection, scrollIntoView: true, userEvent: "delete.line" });
|
||||
return true;
|
||||
};
|
||||
|
@ -1336,6 +1350,20 @@ const insertNewline = ({ state, dispatch }) => {
|
|||
dispatch(state.update(state.replaceSelection(state.lineBreak), { scrollIntoView: true, userEvent: "input" }));
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Replace the selection with a newline and the same amount of
|
||||
indentation as the line above.
|
||||
*/
|
||||
const insertNewlineKeepIndent = ({ state, dispatch }) => {
|
||||
dispatch(state.update(state.changeByRange(range => {
|
||||
let indent = /^\s*/.exec(state.doc.lineAt(range.from).text)[0];
|
||||
return {
|
||||
changes: { from: range.from, to: range.to, insert: state.lineBreak + indent },
|
||||
range: EditorSelection.cursor(range.from + indent.length + 1)
|
||||
};
|
||||
}), { scrollIntoView: true, userEvent: "input" }));
|
||||
return true;
|
||||
};
|
||||
function isBetweenBrackets(state, pos) {
|
||||
if (/\(\)|\[\]|\{\}/.test(state.sliceDoc(pos - 1, pos + 1)))
|
||||
return { from: pos, to: pos };
|
||||
|
@ -1468,6 +1496,26 @@ const indentLess = ({ state, dispatch }) => {
|
|||
return true;
|
||||
};
|
||||
/**
|
||||
Enables or disables
|
||||
[tab-focus mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode). While on, this
|
||||
prevents the editor's key bindings from capturing Tab or
|
||||
Shift-Tab, making it possible for the user to move focus out of
|
||||
the editor with the keyboard.
|
||||
*/
|
||||
const toggleTabFocusMode = view => {
|
||||
view.setTabFocusMode();
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Temporarily enables [tab-focus
|
||||
mode](https://codemirror.net/6/docs/ref/#view.EditorView.setTabFocusMode) for two seconds or until
|
||||
another key is pressed.
|
||||
*/
|
||||
const temporarilySetTabFocusMode = view => {
|
||||
view.setTabFocusMode(2000);
|
||||
return true;
|
||||
};
|
||||
/**
|
||||
Insert a tab character at the cursor or, if something is selected,
|
||||
use [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) to indent the entire
|
||||
selection.
|
||||
|
@ -1594,6 +1642,7 @@ The default keymap. Includes all bindings from
|
|||
- Shift-Ctrl-\\ (Shift-Cmd-\\ on macOS): [`cursorMatchingBracket`](https://codemirror.net/6/docs/ref/#commands.cursorMatchingBracket)
|
||||
- Ctrl-/ (Cmd-/ on macOS): [`toggleComment`](https://codemirror.net/6/docs/ref/#commands.toggleComment).
|
||||
- Shift-Alt-a: [`toggleBlockComment`](https://codemirror.net/6/docs/ref/#commands.toggleBlockComment).
|
||||
- Ctrl-m (Alt-Shift-m on macOS): [`toggleTabFocusMode`](https://codemirror.net/6/docs/ref/#commands.toggleTabFocusMode).
|
||||
*/
|
||||
const defaultKeymap = /*@__PURE__*/[
|
||||
{ key: "Alt-ArrowLeft", mac: "Ctrl-ArrowLeft", run: cursorSyntaxLeft, shift: selectSyntaxLeft },
|
||||
|
@ -1612,7 +1661,8 @@ const defaultKeymap = /*@__PURE__*/[
|
|||
{ key: "Shift-Mod-k", run: deleteLine },
|
||||
{ key: "Shift-Mod-\\", run: cursorMatchingBracket },
|
||||
{ key: "Mod-/", run: toggleComment },
|
||||
{ key: "Alt-A", run: toggleBlockComment }
|
||||
{ key: "Alt-A", run: toggleBlockComment },
|
||||
{ key: "Ctrl-m", mac: "Shift-Alt-m", run: toggleTabFocusMode },
|
||||
].concat(standardKeymap);
|
||||
/**
|
||||
A binding that binds Tab to [`indentMore`](https://codemirror.net/6/docs/ref/#commands.indentMore) and
|
||||
|
@ -1622,4 +1672,4 @@ this.
|
|||
*/
|
||||
const indentWithTab = { key: "Tab", run: indentMore, shift: indentLess };
|
||||
|
||||
export { blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, transposeChars, undo, undoDepth, undoSelection };
|
||||
export { blockComment, blockUncomment, copyLineDown, copyLineUp, cursorCharBackward, cursorCharForward, cursorCharLeft, cursorCharRight, cursorDocEnd, cursorDocStart, cursorGroupBackward, cursorGroupForward, cursorGroupLeft, cursorGroupRight, cursorLineBoundaryBackward, cursorLineBoundaryForward, cursorLineBoundaryLeft, cursorLineBoundaryRight, cursorLineDown, cursorLineEnd, cursorLineStart, cursorLineUp, cursorMatchingBracket, cursorPageDown, cursorPageUp, cursorSubwordBackward, cursorSubwordForward, cursorSyntaxLeft, cursorSyntaxRight, defaultKeymap, deleteCharBackward, deleteCharBackwardStrict, deleteCharForward, deleteGroupBackward, deleteGroupForward, deleteLine, deleteLineBoundaryBackward, deleteLineBoundaryForward, deleteToLineEnd, deleteToLineStart, deleteTrailingWhitespace, emacsStyleKeymap, history, historyField, historyKeymap, indentLess, indentMore, indentSelection, indentWithTab, insertBlankLine, insertNewline, insertNewlineAndIndent, insertNewlineKeepIndent, insertTab, invertedEffects, isolateHistory, lineComment, lineUncomment, moveLineDown, moveLineUp, redo, redoDepth, redoSelection, selectAll, selectCharBackward, selectCharForward, selectCharLeft, selectCharRight, selectDocEnd, selectDocStart, selectGroupBackward, selectGroupForward, selectGroupLeft, selectGroupRight, selectLine, selectLineBoundaryBackward, selectLineBoundaryForward, selectLineBoundaryLeft, selectLineBoundaryRight, selectLineDown, selectLineEnd, selectLineStart, selectLineUp, selectMatchingBracket, selectPageDown, selectPageUp, selectParentSyntax, selectSubwordBackward, selectSubwordForward, selectSyntaxLeft, selectSyntaxRight, simplifySelection, splitLine, standardKeymap, temporarilySetTabFocusMode, toggleBlockComment, toggleBlockCommentByLine, toggleComment, toggleLineComment, toggleTabFocusMode, transposeChars, undo, undoDepth, undoSelection };
|
||||
|
|
4
node_modules/@codemirror/commands/package.json
generated
vendored
4
node_modules/@codemirror/commands/package.json
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@codemirror/commands",
|
||||
"version": "6.3.3",
|
||||
"version": "6.6.0",
|
||||
"description": "Collection of editing commands for the CodeMirror code editor",
|
||||
"scripts": {
|
||||
"test": "cm-runtests",
|
||||
|
@ -28,7 +28,7 @@
|
|||
"dependencies": {
|
||||
"@codemirror/language": "^6.0.0",
|
||||
"@codemirror/state": "^6.4.0",
|
||||
"@codemirror/view": "^6.0.0",
|
||||
"@codemirror/view": "^6.27.0",
|
||||
"@lezer/common": "^1.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue