Alt+ ↑ / ↓ 向上/向下移动行 Move line up/down Shift+Alt + ↓ / ↑ 向上/向下复制行 Copy line up/down Ctrl+Shift+K 删除行 Delete line Ctrl+Enter 在下面插入行 Insert line below Ctrl+Shift+Enter 在上面插入行 Insert line above Ctrl+Shift+\ 跳到匹配的括号 Jump to matching bracket Ctrl...
Ctrl+X剪切行(空选定) Cutline(empty selection)Ctrl+C复制行(空选定)Copyline(empty selection)Alt+↑/↓ 向上/向下移动行 Move line up/down Shift+Alt+↓/↑ 向上/向下复制行 Copy line up/down Ctrl+Shift+K删除行 Delete line Ctrl+Enter 在下面插入行 Insert line below Ctrl+Shift+Enter 在上面插入...
Ctrl+CCopy line (empty selection) 空选时复制行 Alt+ ↑ / ↓Move line up/down 移动行,和上下行交换位置 Shift+Alt + ↓ / ↑Copy line up/down 将本行复制到上/下面 Ctrl+EnterInsert line below 向下插入新空行 Ctrl+Shift+EnterInsert line above 向上插入新空行 Home / EndGo to beginning/end ...
Shift+Alt + ↓ / ↑ 向上/向下复制行 Copy line up/down Ctrl+Shift+K 删除行 Delete line Ctrl+Enter 在下面插入行 Insert line below Ctrl+Shift+Enter 在上面插入行 Insert line above Ctrl+Shift+\ 跳到匹配的括号 Jump to matching bracket Ctrl+] / [ 缩进/缩进行 Indent/outdent line Home 转到...
"insertFinalNewline": "有効にすると、ファイルの保存時に最新の行を末尾に挿入します。" "最新の行" means "the latest line" but it makes no sense. It should be "改行" to mean "character(s) such as CR or LF". Member csigs commented Feb 2, 2024 Thank you for your feedback. We...
This issue stems from the comment #233186 (comment) I think a comment should also not be inserted when the new line is created using the command editor.action.insertLineAfter -- eg vim has a keybinding to create a newline and currently i...
"typescript.format.insertSpaceBeforeFunctionParenthesis": false, // 定义控制块的左括号是否放置在新的一行。 "typescript.format.placeOpenBraceOnNewLineForControlBlocks": false, // 定义函数的左大括号是否放置在新的一行。 "typescript.format.placeOpenBraceOnNewLineForFunctions": false, // 定义...
{"key":"shift+alt+down","command":"editor.action.insertCursorBelow","when":"editorTextFocus"},{// 关闭窗口"key":"alt+e","command":"workbench.action.closeActiveEditor"},{// 全屏"key":"f11","command":"workbench.action.exitZenMode","when":"inZenMode"},{// 格式化"key":"shift+alt+...
Editor customization (relative line number, scrolloff, etc) is handled by VSCode. Dot-repeat (.) is slightly different - moving the cursor within a change range won't break the repeat. sequence. In Neovim, if you type abc<cursor> in insert mode, then move the cursor to a<cursor>bc an...
const item = new vscode.CompletionItem(`${res.pxValue}px -> ${res.rpx}`, vscode.CompletionItemKind.Snippet); // 要插入的文本 item.insertText = res.rpx; item.detail = 'Value'; //国际化提示信息 let message = localize('px2rpx.description', ...