0
0

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 5 years have passed since last update.

Visual Studio Code 便利拡張機能

Posted at

visual studio code の拡張機能で便利だったもののメモ

Paste Image

クリップボードに画面キャプチャーがある場合、
Ctrl + Alt + V で貼り付けると画像を貼り付けることができる。
デフォルトの画像の保存先は、.mdファイルと同じディレクトリ

visual studio code のワークスペースファイルを作成し、
settingsにpasteImageの設定情報を記述することで保存先の変更などが可能。

{
	"folders": [
		{
			"path": "."
		}
	],
	"settings": {
		"pasteImage.path": "${projectRoot}/markdown/img",
		"pasteImage.basePath": "${projectRoot}",
		"pasteImage.forceUnixStyleSeparator": true,
		"pasteImage.prefix": "/"
	}
}
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?