格式化后光标位于一个奇怪的位置

the cursor is positioned in a strange position after formatting

我的vscode安装了vetur插件。自定义配置如下:

"vetur.format.options.tabSize": 2,
"vetur.format.defaultFormatterOptions": {
  "js-beautify-html": {
    "wrap_attributes": "auto"
  },
  "prettyhtml": {
  "printWidth": 10000,
  "singleQuote": false,
  "wrapAttributes": false,
  "sortAttributes": false
  }
},
"vetur.format.defaultFormatter.html": "js-beautify-html"

其他为默认配置

vetur版本号为0.14.4,vscode版本号为1.30.1.


用vuejs编程的时候,大概要写300多行。按格式化快捷键后,光标不在格式化的地方。它位于 </script> 标签的前面。这是非常痛苦的。现在你必须每次都记住它。格式化的地方的行数,然后自己跳回去

 "vetur.format.defaultFormatterOptions": {
        "js-beautify-html": {
            "wrap_line_length": 120,
            "wrap_attributes": "auto",
            "end_with_newline": false
        }
    },
    "vetur.format.defaultFormatter.html": "js-beautify-html",
    "vetur.format.defaultFormatter.js": "vscode-typescript",