From f36e148accd332f1bdff549af66ac3e1b1921c23 Mon Sep 17 00:00:00 2001 From: Robert Stanfield Date: Sun, 15 May 2016 20:45:45 -0400 Subject: [PATCH] When using the event editor:copy-selection, it pastes at the cursor rather than the beginning of the line (see #11542) --- src/text-editor.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text-editor.coffee b/src/text-editor.coffee index 051fd76b8..740f9e5f3 100644 --- a/src/text-editor.coffee +++ b/src/text-editor.coffee @@ -3007,7 +3007,7 @@ class TextEditor extends Model maintainClipboard = false for selection in @getSelectionsOrderedByBufferPosition() if not selection.isEmpty() - selection.copy(maintainClipboard, true) + selection.copy(maintainClipboard, false) maintainClipboard = true return