Skip to content

VSNotes#

使い方#

  1. Ctrl+Shift+PVSNotes: Run setupを選択し、事前に保存する場所を指定しておく
  2. Ctrl+Shift+PVSNotes: Create a New Noteを選択
  3. タイトルを入力し、新規ノートを作成(例:2023-01-03_11-49_test.mdのように日付と時刻つきで保存される)
  4. markdown 記法で編集し、保存

Info

保存できるフォルダは1つのため雑多なメモだけにするか、メモごとに細かく分けるなど工夫が必要。
後述のタグを付けてノートのグルーピングも効果的。

設定#

settings.jsonに以下の設定を記載することで格納するフォルダやファイル名を指定可能。

Info

ユーザー設定のsettings.jsonの場所は以下のとおり

  • Windows: %APPDATA%\Code\User\settings.json
  • macOS:$HOME/Library/Application Support/Code/User/settings.json
  • Linux: $HOME/.config/Code/User/settings.json
settings.json
  // VSNote で指定したフォルダに年月ディレクトリを作成しファイルを格納
    "vsnotes.tokens": [
        {
            "type": "datetime",
            "token": "{year}",
            "format": "YYYY",
            "description": "Insert formatted Year."
        },
        {
            "type": "datetime",
            "token": "{month}",
            "format": "MM",
            "description": "Insert formatted Month."
        },
        {
            "type": "datetime",
            "token": "{dt}",
            "format": "YYYY-MMDD-HHmm",
            "description": "Insert formatted datetime."
        },
        {
            "type": "title",
            "token": "{title}",
            "description": "Insert note title from input box.",
            "format": "Untitled"
        },
        {
            "type": "extension",
            "token": "{ext}",
            "description": "Insert file vsnotes.",
            "format": "md"
        }
    ],
    "vsnotes.defaultNoteTitle": "{year}_{month}/{dt}_{title}.{ext}",

機能#

タグでグループ分け#

作成したノートの先頭に以下ダグを付けておくと、vscode でタグごとに確認ができる。

---
tags:
  - <タグの名前>
---

参考#