Skip to content

Commit

Permalink
fix: make volar.autoWrapParentheses default false
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Dec 8, 2022
1 parent 7cecb34 commit 5709a50
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -19,7 +19,7 @@ export default function (options: {

async doAutoInsert(document, position, options_2) {

const enabled = await context.env.configurationHost?.getConfiguration<boolean>('volar.autoWrapParentheses') ?? true;
const enabled = await context.env.configurationHost?.getConfiguration<boolean>('volar.autoWrapParentheses') ?? false;
if (!enabled)
return;

Expand Down

0 comments on commit 5709a50

Please sign in to comment.