Skip to content

Commit 862149d

Browse files
authored
change default value of editor.suggest.matchOnWordStartOnly (microsoft#159163)
fixes (again) microsoft#53715 (comment)
1 parent 3e014a7 commit 862149d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/editor/common/config/editorOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4162,7 +4162,7 @@ class EditorSuggest extends BaseEditorOption<EditorOption.suggest, ISuggestOptio
41624162
},
41634163
'editor.suggest.matchOnWordStartOnly': {
41644164
type: 'boolean',
4165-
default: false,
4165+
default: true,
41664166
markdownDescription: nls.localize('editor.suggest.matchOnWordStartOnly', "When enabled IntelliSense filtering requires that the first character matches on a word start, e.g `c` on `Console` or `WebContext` but _not_ on `description`. When disabled IntelliSense will show more results but still sorts them by match quality.")
41674167
},
41684168
'editor.suggest.showFields': {

0 commit comments

Comments
 (0)