From c33d495dda305fbe9a93de0e8d3441fcb0e2cbda Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Thu, 22 Oct 2020 15:37:20 +0200 Subject: [PATCH] On Linux use a different example (fixes #18902) --- .../walkThrough/browser/editor/vs_code_editor_walkthrough.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/vs_code_editor_walkthrough.ts b/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/vs_code_editor_walkthrough.ts index b729c1ba840..cd2d8c70aa6 100644 --- a/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/vs_code_editor_walkthrough.ts +++ b/src/vs/workbench/contrib/welcome/walkThrough/browser/editor/vs_code_editor_walkthrough.ts @@ -56,7 +56,7 @@ app.listen(3000); ### Line Actions Since it's very common to work with the entire text in a line we provide a set of useful shortcuts to help with this. -1. Copy a line and insert it above or below the current position with kb(editor.action.copyLinesDownAction) or kb(editor.action.copyLinesUpAction) respectively. +1. Copy a line and insert it above or below the current position with kb(editor.action.copyLinesDownAction) or kb(editor.action.copyLinesUpAction) respectively.Copy the entire current line when no text is selected with kb(editor.action.clipboardCopyAction). 2. Move an entire line or selection of lines up or down with kb(editor.action.moveLinesUpAction) and kb(editor.action.moveLinesDownAction) respectively. 3. Delete the entire line with kb(editor.action.deleteLines).