去掉VSCode-dart扩展烦人的竖线

参考:Disable White Vertical Line - StackOverflow

在 VSCode Settings.json 中找到如下代码

  "[dart]": {
    "editor.formatOnSave": true,
    "editor.formatOnType": true,
    "editor.rulers": [
      80
    ],
    "editor.selectionHighlight": false,
    "editor.suggest.snippetsPreventQuickSuggestions": false,
    "editor.suggestSelection": "first",
    "editor.tabCompletion": "onlySnippets",
    "editor.wordBasedSuggestions": false
  },

editor.rulers 改为空数组即可


  "editor.rulers": []
最后修改:2021 年 05 月 27 日 10 : 54 AM
如果觉得我的文章对你有用,请随意赞赏

1 条评论

  1. flutter

    good

发表评论 取消回复