Skip to content

Commit

Permalink
ショートカットキーの知見を共有するページを追加し、アラートブロック用のスニペットを追記 (#40)
Browse files Browse the repository at this point in the history
* ショートカットキーに関するページを追加

* アラートのスニペットを追加
  • Loading branch information
riscait authored Jan 10, 2024
1 parent fcfc45d commit 80dce4f
Show file tree
Hide file tree
Showing 2 changed files with 91 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .vscode/markdown.code-snippets
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,35 @@
"{{% /pageinfo %}}\n"
],
"description": "追記が必要な項目にはPageInfoを残しておく。"
},
"alert-note": {
"scope": "markdown",
"prefix": "note",
"body": [
"{{< alert title="Note" >}}"
"$1"
"{{< /alert >}}\n"
],
"description": "Alert with a Note"
},
"alert-success": {
"scope": "markdown",
"prefix": "success",
"body": [
"{{< alert color="success" title="Success" >}}"
"$1"
"{{< /alert >}}\n"
],
"description": "Alert with a Success"
},
"alert-warning": {
"scope": "markdown",
"prefix": "warning",
"body": [
"{{< alert color="warning" title="Warning" >}}"
"$1"
"{{< /alert >}}\n"
],
"description": "Alert with a Waring"
}
}
61 changes: 61 additions & 0 deletions content/ja/onboarding/shortcut-key.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
title: ショートカットキー(macOS)
description: Macで作業効率を上げるためのショートカットキーの知見を共有する、覚える。
---
{{% pageinfo %}}
効率的な作業には欠かせないショートカットキー。
一覧にないお勧めのショートカットキーがあれば、ぜひ追記してください🚀
{{% /pageinfo %}}

## シンボル

| シンボル | 名前 |
| --- | --- |
|| Command |
|| Shift |
|| Option |
|| Control |

## Mac

### カーソル操作

| キー | 機能 |
| --- | --- |
| ⌃ P | カーソルを1つ上に移動 |
| ⌃ N | カーソルを1つ下に移動 |
| ⌃ B | カーソルを1つ左に移動 |
| ⌃ F | カーソルを1つ右に移動 |
| ⌃ A | 行頭に移動 |
| ⌃ E | 行末に移動 |
| ⌃ H | カーソルの左の文字を削除 |
| ⌃ D | カーソルの右の文字を削除 |
| ⌃ K | カーソルの右の文字を全て削除 |
| ⌃ T | カーソルの左右の文字を入れ替え |

## Slack

| キー | 機能 |
| --- | --- |
| ⌘ ⇧ A | 全未読メッセージを表示 |
| ⌘ ⇧ T | スレッドを表示 |
| ⌘ ⇧ M | アクティビティを表示 |
|[ | 戻る |
|] | 進む |

## VS Code

| キー | 機能 |
| --- | --- |
| F5 | デバッグ開始 |
| ⇧ F5 | デバッグ停止 |
| ⌃ R | 履歴からプロジェクトを開く |
| ⌘ ⇧ E | 今開いているファイルをExplorerで開く |
| ⌘ ⇧ W | Windowを閉じる |

## Timing

| キー | 機能 |
| --- | --- |
| ⌘ ⌥ 1 | Today を表示 |
| ⌘ ⌥ ⇧ 1 | Yesterday を表示 |

0 comments on commit 80dce4f

Please sign in to comment.