7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

VSCodeのコードスニペットが便利だった

Posted at

概要

前回 、C++の環境を構築したが、構文が覚えられず、競技プログラミングをやるときには毎回テンプレートをコピペしていた。
調べたらVSCodeにはコードスニペットを登録する機能があったので、今回はこれを使ってテンプレートを登録する。

手順

  1. 「ファイル」→「基本設定」→「ユーザースニペット」を選択。

  2. 言語を選ぶ。
    言語毎に設定ファイルが作成される。
    例:C++ → cpp.json

  3. ファイルが開いたら以下を追記して保存する。

cpp.json
	"Print to console": {
		"prefix": "main",
		"body": [
			"#include <bits/stdc++.h>",
			"using namespace std;",
			"",
			"int main() {",
			"  int n,m;",
			"  cin >> n >> m;",
			"  ",
			"  int r = 0;",
			"  cout << r << endl;",
			"}",
		],
		"description": "Main Template"
	}
  1. 設定ができていると「.cpp」のファイル編集中に「main」 と打つと上のスニペットを呼び出せるようになる。

参考

7
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?