“flutter pub run build_runner watch --delete-conflicting-outputs”的 VS Code 键盘快捷键

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

是否可以通过 VS Code 中的快捷方式运行此命令? 每次都自己输入命令

flutter pub run build_runner watch --delete-conflicting-outputs
似乎没有必要。

Context:该命令用于flutter和dart项目中的代码生成。

flutter dart visual-studio-code keyboard-shortcuts code-generation
1个回答
3
投票
  1. 在 vs code 中按 Ctrl + Shift + B / Cmd + Shift + B(在 MacOS 上)。
  2. 出现此弹出窗口 vs code popup with build_runner commands
  3. 单击
    watch
    命令右侧的设置图标,打开
    tasks.json
  4.  --delete-conflicting-outputs
    添加到命令中 tasks.json
  5. 再次按 Ctrl + Shift + B 现在会打开一个包含完整命令的弹出窗口 vs code popup with build_runner commands including the changed command
© www.soinside.com 2019 - 2024. All rights reserved.