使用 vscode 在乳胶中选择内部美元符号

问题描述 投票:0回答:1

写latex时如何在vscode中选择

$math_formula_here$
里面的所有内容?

我试过 shift+alt+rightarrow 但它不起作用。

visual-studio-code latex
1个回答
0
投票

您可以使用扩展程序Select By

添加以下键绑定

  {
    "key": "shift+alt+right",  // or any other key combo
    "when": "editorTextFocus",
    "command": "selectby.regex",
    "when": "editorLangId == latex"
    "args": {
      "backward": "$",
      "forward": "$",
      "forwardInclude": false,
      "backwardInclude": false
    }
  }
© www.soinside.com 2019 - 2024. All rights reserved.