前提・実現したいこと
- includeの間の改行を無くしたいです
発生している問題・エラーメッセージ
VSCodeにてC++の自動フォーマットを下記のように設定しています。
setting.json
{ "C_Cpp.clang_format_fallbackStyle": "Google", "editor.formatOnSave": true, "editor.formatOnType": true, "editor.tabSize": 2 }
この設定の場合、ソースコードに複数のincludeがあるとincludeの間に改行が入ってしまいます。
こちらの改行を無くす方法を教えていただきたいです。
現状
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; int main() { cout << "Hello,World!" << endl; return 0; }
理想
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; int main() { cout << "Hello,World!" << endl; return 0; }
それ、タグはC++じゃないっしょ。
回答1件
あなたの回答
tips
プレビュー