VSCodeでNimのFormatter(nimpretty)の自動実行を設定
1.VSCodeで「Run On Save」をインストール
2.VSCodeの設定を開き、「Run On Save」の設定ファイルを開く
3.settings.jsonに設定を記録
- nimのインストールフォルダに「nimpretty.exe」があることを確認。なければ、「koch tools」でインストール。
- これで、nimファイルを保存すると整形される。
settings.json
"editor.formatOnSave": true,
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.nim$",
"cmd": "nimpretty --indent:2 ${file} "
}
]
}
settings.json
"editor.formatOnSave": true,
"emeraldwalk.runonsave": {
"commands": [
{
"match": "\\.nim$",
"cmd": "nimpretty --indent:2 ${file} "
}
]
}
Author And Source
この問題について(VSCodeでNimのFormatter(nimpretty)の自動実行を設定), 我々は、より多くの情報をここで見つけました https://qiita.com/SFITB/items/78e04ff3e76457fac47a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .