Ctrl+KCtrl+U删除行注释 Remove line comment Ctrl+/切换行注释 Toggle line comment Shift+Alt+A切换块注释 Toggle block comment Alt+Z切换换行 Toggle word wrap 导航Navigation 代码语言:javascript 复制 按Press 功能 Function Ctrl+T显示所有符号 Show all Symbols Ctrl+G转到行...Go to Line...Ctrl+P转到...
1. Select the text to check. 2. Ctrl/Cmd-Shift-L selects all occurrences. 3. Ctrl/Cmd-I will select the entire line. 4. Delete or whichever other action you want to do with selected lines I hope this helped and I have saved you some time....
Ctrl+K Ctrl+C 添加行注释 Add line comment Ctrl+K Ctrl+U 删除行注释 Remove line comment Ctrl+/ 切换行注释 Toggle line comment Shift+Alt+A 切换块注释 Toggle block comment Alt+Z 切换换行 Toggle word wrap 导航 Navigation 按Press 功能Function Ctrl + T 显示所有符号 Show all Symbols Ctrl + ...
"before": ["<leader>", "c", "c"], "commands": ["editor.action.addCommentLine"] }, { "before": ["<leader>", "c", "u"], "commands": ["editor.action.removeCommentLine"] }, { "before": ["<leader>", "f", "m"], "commands": ["editor.action.format"] }, { "before":...
gotoLineMode: args.goto, initialStartup: true, remoteAuthority, forceProfile, forceTempProfile }); } 其实这里是根据vscode传入不同的协议参数而打开不同状态的窗口,vscode本身是支持很多协议参数的,比如说空窗口、文件夹、文件、合并窗口等。至此,我们的启动流程就结束了(暂时不深入workbench相关的分析)。
{ const lineNumbers = this.getLineNumbers(args, editor); const levels = args && args.levels; const direction = args && args.direction; if (typeof levels !== 'number' && typeof direction !== 'string') { // fold the region at the location or if already collapsed, the first un...
master 克隆/下载 git config --global user.name userName git config --global user.email userEmail 分支2 标签0 brand_zhoufirst commit500c0343年前 1 次提交 .vscode first commit 3年前 hooks first commit 3年前 images first commit 3年前 ...
remove blank line (my best checkin ever) May 2, 2020 README.md Fix supported markdown-lint violations in markdown files (#190750) Aug 24, 2023 SECURITY.md Update SECURITY.md to latest version (#206550) Mar 1, 2024 ThirdPartyNotices.txt ...
{"editor.defaultFormatter":"vscode.typescript-language-features"},// // 默认使用prettier格式化支持的文件"editor.defaultFormatter":"esbenp.prettier-vscode","prettier.jsxBracketSameLine":true,// 函数前面加个空格"javascript.format.insertSpaceBeforeFunctionParenthesis":true,"prettier.singleQuote":true,"...
{// Since m4 is a single line comment is is at least of length 2 (e.g. //)// If it ends in \r?\n then keep it.constlength=m4.length;if(m4[length-1]==='\n'){returnm4[length-2]==='\r'?'\r\n':'\n';}else{return'';}}elseif(m5){// Remove the trailing comma...