From f5a3dfd36866fcbadd02499d9e6becaaca9d1406 Mon Sep 17 00:00:00 2001 From: Alex Dima Date: Fri, 8 Apr 2016 17:39:14 +0200 Subject: [PATCH] Fixes #4460: Improve description for `editor.wrappingColumn` --- src/vs/editor/common/config/commonEditorConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/editor/common/config/commonEditorConfig.ts b/src/vs/editor/common/config/commonEditorConfig.ts index 294f19e2640..cc4a5d1db4b 100644 --- a/src/vs/editor/common/config/commonEditorConfig.ts +++ b/src/vs/editor/common/config/commonEditorConfig.ts @@ -850,7 +850,7 @@ let editorConfiguration:IConfigurationNode = { 'type': 'integer', 'default': DefaultConfig.editor.wrappingColumn, 'minimum': -1, - 'description': nls.localize('wrappingColumn', "Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping") + 'description': nls.localize('wrappingColumn', "Controls after how many characters the editor will wrap to the next line. Setting this to 0 turns on viewport width wrapping (word wrapping). Setting this to -1 forces the editor to never wrap.") }, 'editor.wrappingIndent' : { 'type': 'string',