From 56e7e3e5683be12d7b1bb85cde907cf228090128 Mon Sep 17 00:00:00 2001 From: Christof Marti Date: Wed, 25 Jan 2017 16:50:17 -0800 Subject: [PATCH] 'Since' (#19178) --- .../walkThrough/electron-browser/editor/editorWalkThrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md b/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md index e6caed7e74b..35d408d5ebc 100644 --- a/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md +++ b/src/vs/workbench/parts/walkThrough/electron-browser/editor/editorWalkThrough.md @@ -48,7 +48,7 @@ app.listen(3000); ### Line Actions -It's very common to want to work with the entire text in a line we provide a set of useful shortcuts to help with this. +Since it's very common to want 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. 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).