├── .editorconfig ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── README.md ├── tmp └── .gitkeep ├── topic0.1 ├── README.md └── img │ ├── activity_bar_extension.png │ ├── change_lang_ja.png │ ├── install_code_command_macos.png │ ├── install_jp_langpack.png │ ├── install_vscode_on_macos.png │ └── install_vscode_on_windows.jpg ├── topic0.2 ├── README.md └── img │ ├── Clone.PNG │ ├── Code.PNG │ ├── Git_for_Windows.PNG │ ├── Git_for_mac.PNG │ ├── Tarminal.PNG │ ├── check_install_xcode_dev_tools.png │ ├── git_version.PNG │ ├── open.PNG │ ├── open_foruda.png │ ├── tarminal_gamen.PNG │ └── terminal_seikou.PNG ├── topic1 ├── README.md ├── img │ ├── 100_UI.PNG │ ├── 101_explorer.PNG │ ├── 102_search.PNG │ ├── 103_git.PNG │ ├── 104_debug.PNG │ ├── 105_extension.PNG │ ├── 110_quick_open_file.PNG │ ├── 120_open_file.PNG │ ├── 130_task_result.PNG │ └── 140_drag_area.gif ├── topic1-A.md ├── topic1-B.md └── topic1-C.md ├── topic2 ├── README.md └── img │ ├── all_save.png │ ├── explorer_tab.png │ ├── markdown_preview_button.png │ ├── new_file_icon.png │ ├── task2_saved.png │ ├── task2_unsaved.png │ └── unsaved.png ├── topic3 ├── README.md ├── img │ ├── case_sensitive.png │ ├── directory_search.png │ ├── files_exclude.png │ ├── include_exclude.png │ ├── quick_search.png │ ├── regular_expression.png │ ├── replace.png │ ├── revert_task.png │ ├── search_selection1.png │ ├── search_selection2.png │ ├── showing_multi_lines.png │ ├── simple_search.png │ └── word.png ├── sample.txt ├── task1-1.md ├── task1-2.md ├── task1-3.md ├── task2.md ├── task4.md ├── topic3-1 │ └── task3-1.md └── topic3-2 │ └── task3-2.md ├── topic4 ├── README.md └── img │ ├── command_palette.png │ ├── install_prettier.png │ ├── installed_extensions.png │ ├── markdown_all_in_one.png │ ├── markdown_pdf.png │ ├── pdf.png │ ├── pdf_in_explorer_view.png │ ├── prettier_installed.png │ ├── stash.png │ ├── toc_inserted.png │ └── uninstall.png ├── topic5 ├── README.md └── img │ ├── apply_quickfix_from_popup.gif │ ├── apply_quickfix_from_problem_panel.gif │ ├── code_spell_checker.png │ ├── error_in_go.png │ ├── problem_panel.png │ ├── quickfix_icon.png │ ├── quickfix_on_problem_panel.png │ └── settings_user_words.png ├── topic6 ├── README.md └── img │ ├── after_commit.png │ ├── after_push.png │ ├── branch.png │ ├── commit.png │ ├── diff.png │ ├── git_action.png │ ├── github_change_branch.png │ ├── other_command.png │ ├── revert.png │ ├── statusbar.png │ └── taskl3.png ├── topic7 ├── README.md └── img │ ├── 700_open_setting_02.PNG │ ├── 720_setting_colortheme_to_abyss.PNG │ ├── 720_setting_colortheme_to_red.PNG │ ├── 730_setting_sidebar_on_right.PNG │ ├── 740_setting_format_on_save_after.PNG │ ├── 740_setting_format_on_save_before.PNG │ ├── 750_keyboard_shortcut.PNG │ └── 760_set_keybind.PNG ├── topic8 ├── README.md └── img │ ├── 800_use_snippet.gif │ ├── 810_select_snippet.PNG │ ├── 820_open_snippet.PNG │ ├── 830_define_snippet.PNG │ ├── 835_use_snippet_screencast.gif │ └── 840_snippet_with_variable.PNG └── topic9 ├── .gitignore ├── README.md ├── img ├── compile_error.png ├── switch_panel_to_terminal.png ├── terminal_ui.png └── windows_unzip.png ├── task.zip └── try-code-command.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | tmp 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/README.md -------------------------------------------------------------------------------- /tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /topic0.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/README.md -------------------------------------------------------------------------------- /topic0.1/img/activity_bar_extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/activity_bar_extension.png -------------------------------------------------------------------------------- /topic0.1/img/change_lang_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/change_lang_ja.png -------------------------------------------------------------------------------- /topic0.1/img/install_code_command_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/install_code_command_macos.png -------------------------------------------------------------------------------- /topic0.1/img/install_jp_langpack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/install_jp_langpack.png -------------------------------------------------------------------------------- /topic0.1/img/install_vscode_on_macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/install_vscode_on_macos.png -------------------------------------------------------------------------------- /topic0.1/img/install_vscode_on_windows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.1/img/install_vscode_on_windows.jpg -------------------------------------------------------------------------------- /topic0.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/README.md -------------------------------------------------------------------------------- /topic0.2/img/Clone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/Clone.PNG -------------------------------------------------------------------------------- /topic0.2/img/Code.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/Code.PNG -------------------------------------------------------------------------------- /topic0.2/img/Git_for_Windows.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/Git_for_Windows.PNG -------------------------------------------------------------------------------- /topic0.2/img/Git_for_mac.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/Git_for_mac.PNG -------------------------------------------------------------------------------- /topic0.2/img/Tarminal.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/Tarminal.PNG -------------------------------------------------------------------------------- /topic0.2/img/check_install_xcode_dev_tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/check_install_xcode_dev_tools.png -------------------------------------------------------------------------------- /topic0.2/img/git_version.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/git_version.PNG -------------------------------------------------------------------------------- /topic0.2/img/open.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/open.PNG -------------------------------------------------------------------------------- /topic0.2/img/open_foruda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/open_foruda.png -------------------------------------------------------------------------------- /topic0.2/img/tarminal_gamen.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/tarminal_gamen.PNG -------------------------------------------------------------------------------- /topic0.2/img/terminal_seikou.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic0.2/img/terminal_seikou.PNG -------------------------------------------------------------------------------- /topic1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/README.md -------------------------------------------------------------------------------- /topic1/img/100_UI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/100_UI.PNG -------------------------------------------------------------------------------- /topic1/img/101_explorer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/101_explorer.PNG -------------------------------------------------------------------------------- /topic1/img/102_search.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/102_search.PNG -------------------------------------------------------------------------------- /topic1/img/103_git.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/103_git.PNG -------------------------------------------------------------------------------- /topic1/img/104_debug.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/104_debug.PNG -------------------------------------------------------------------------------- /topic1/img/105_extension.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/105_extension.PNG -------------------------------------------------------------------------------- /topic1/img/110_quick_open_file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/110_quick_open_file.PNG -------------------------------------------------------------------------------- /topic1/img/120_open_file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/120_open_file.PNG -------------------------------------------------------------------------------- /topic1/img/130_task_result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/130_task_result.PNG -------------------------------------------------------------------------------- /topic1/img/140_drag_area.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic1/img/140_drag_area.gif -------------------------------------------------------------------------------- /topic1/topic1-A.md: -------------------------------------------------------------------------------- 1 | # topic1-A 2 | -------------------------------------------------------------------------------- /topic1/topic1-B.md: -------------------------------------------------------------------------------- 1 | # topic1-B 2 | -------------------------------------------------------------------------------- /topic1/topic1-C.md: -------------------------------------------------------------------------------- 1 | # topic1-C 2 | -------------------------------------------------------------------------------- /topic2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/README.md -------------------------------------------------------------------------------- /topic2/img/all_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/all_save.png -------------------------------------------------------------------------------- /topic2/img/explorer_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/explorer_tab.png -------------------------------------------------------------------------------- /topic2/img/markdown_preview_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/markdown_preview_button.png -------------------------------------------------------------------------------- /topic2/img/new_file_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/new_file_icon.png -------------------------------------------------------------------------------- /topic2/img/task2_saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/task2_saved.png -------------------------------------------------------------------------------- /topic2/img/task2_unsaved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/task2_unsaved.png -------------------------------------------------------------------------------- /topic2/img/unsaved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic2/img/unsaved.png -------------------------------------------------------------------------------- /topic3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/README.md -------------------------------------------------------------------------------- /topic3/img/case_sensitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/case_sensitive.png -------------------------------------------------------------------------------- /topic3/img/directory_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/directory_search.png -------------------------------------------------------------------------------- /topic3/img/files_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/files_exclude.png -------------------------------------------------------------------------------- /topic3/img/include_exclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/include_exclude.png -------------------------------------------------------------------------------- /topic3/img/quick_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/quick_search.png -------------------------------------------------------------------------------- /topic3/img/regular_expression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/regular_expression.png -------------------------------------------------------------------------------- /topic3/img/replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/replace.png -------------------------------------------------------------------------------- /topic3/img/revert_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/revert_task.png -------------------------------------------------------------------------------- /topic3/img/search_selection1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/search_selection1.png -------------------------------------------------------------------------------- /topic3/img/search_selection2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/search_selection2.png -------------------------------------------------------------------------------- /topic3/img/showing_multi_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/showing_multi_lines.png -------------------------------------------------------------------------------- /topic3/img/simple_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/simple_search.png -------------------------------------------------------------------------------- /topic3/img/word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/img/word.png -------------------------------------------------------------------------------- /topic3/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/sample.txt -------------------------------------------------------------------------------- /topic3/task1-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/task1-1.md -------------------------------------------------------------------------------- /topic3/task1-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/task1-2.md -------------------------------------------------------------------------------- /topic3/task1-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/task1-3.md -------------------------------------------------------------------------------- /topic3/task2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/task2.md -------------------------------------------------------------------------------- /topic3/task4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/task4.md -------------------------------------------------------------------------------- /topic3/topic3-1/task3-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/topic3-1/task3-1.md -------------------------------------------------------------------------------- /topic3/topic3-2/task3-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic3/topic3-2/task3-2.md -------------------------------------------------------------------------------- /topic4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/README.md -------------------------------------------------------------------------------- /topic4/img/command_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/command_palette.png -------------------------------------------------------------------------------- /topic4/img/install_prettier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/install_prettier.png -------------------------------------------------------------------------------- /topic4/img/installed_extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/installed_extensions.png -------------------------------------------------------------------------------- /topic4/img/markdown_all_in_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/markdown_all_in_one.png -------------------------------------------------------------------------------- /topic4/img/markdown_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/markdown_pdf.png -------------------------------------------------------------------------------- /topic4/img/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/pdf.png -------------------------------------------------------------------------------- /topic4/img/pdf_in_explorer_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/pdf_in_explorer_view.png -------------------------------------------------------------------------------- /topic4/img/prettier_installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/prettier_installed.png -------------------------------------------------------------------------------- /topic4/img/stash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/stash.png -------------------------------------------------------------------------------- /topic4/img/toc_inserted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/toc_inserted.png -------------------------------------------------------------------------------- /topic4/img/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic4/img/uninstall.png -------------------------------------------------------------------------------- /topic5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/README.md -------------------------------------------------------------------------------- /topic5/img/apply_quickfix_from_popup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/apply_quickfix_from_popup.gif -------------------------------------------------------------------------------- /topic5/img/apply_quickfix_from_problem_panel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/apply_quickfix_from_problem_panel.gif -------------------------------------------------------------------------------- /topic5/img/code_spell_checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/code_spell_checker.png -------------------------------------------------------------------------------- /topic5/img/error_in_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/error_in_go.png -------------------------------------------------------------------------------- /topic5/img/problem_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/problem_panel.png -------------------------------------------------------------------------------- /topic5/img/quickfix_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/quickfix_icon.png -------------------------------------------------------------------------------- /topic5/img/quickfix_on_problem_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/quickfix_on_problem_panel.png -------------------------------------------------------------------------------- /topic5/img/settings_user_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic5/img/settings_user_words.png -------------------------------------------------------------------------------- /topic6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/README.md -------------------------------------------------------------------------------- /topic6/img/after_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/after_commit.png -------------------------------------------------------------------------------- /topic6/img/after_push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/after_push.png -------------------------------------------------------------------------------- /topic6/img/branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/branch.png -------------------------------------------------------------------------------- /topic6/img/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/commit.png -------------------------------------------------------------------------------- /topic6/img/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/diff.png -------------------------------------------------------------------------------- /topic6/img/git_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/git_action.png -------------------------------------------------------------------------------- /topic6/img/github_change_branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/github_change_branch.png -------------------------------------------------------------------------------- /topic6/img/other_command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/other_command.png -------------------------------------------------------------------------------- /topic6/img/revert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/revert.png -------------------------------------------------------------------------------- /topic6/img/statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/statusbar.png -------------------------------------------------------------------------------- /topic6/img/taskl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic6/img/taskl3.png -------------------------------------------------------------------------------- /topic7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/README.md -------------------------------------------------------------------------------- /topic7/img/700_open_setting_02.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/700_open_setting_02.PNG -------------------------------------------------------------------------------- /topic7/img/720_setting_colortheme_to_abyss.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/720_setting_colortheme_to_abyss.PNG -------------------------------------------------------------------------------- /topic7/img/720_setting_colortheme_to_red.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/720_setting_colortheme_to_red.PNG -------------------------------------------------------------------------------- /topic7/img/730_setting_sidebar_on_right.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/730_setting_sidebar_on_right.PNG -------------------------------------------------------------------------------- /topic7/img/740_setting_format_on_save_after.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/740_setting_format_on_save_after.PNG -------------------------------------------------------------------------------- /topic7/img/740_setting_format_on_save_before.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/740_setting_format_on_save_before.PNG -------------------------------------------------------------------------------- /topic7/img/750_keyboard_shortcut.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/750_keyboard_shortcut.PNG -------------------------------------------------------------------------------- /topic7/img/760_set_keybind.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic7/img/760_set_keybind.PNG -------------------------------------------------------------------------------- /topic8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/README.md -------------------------------------------------------------------------------- /topic8/img/800_use_snippet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/800_use_snippet.gif -------------------------------------------------------------------------------- /topic8/img/810_select_snippet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/810_select_snippet.PNG -------------------------------------------------------------------------------- /topic8/img/820_open_snippet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/820_open_snippet.PNG -------------------------------------------------------------------------------- /topic8/img/830_define_snippet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/830_define_snippet.PNG -------------------------------------------------------------------------------- /topic8/img/835_use_snippet_screencast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/835_use_snippet_screencast.gif -------------------------------------------------------------------------------- /topic8/img/840_snippet_with_variable.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic8/img/840_snippet_with_variable.PNG -------------------------------------------------------------------------------- /topic9/.gitignore: -------------------------------------------------------------------------------- 1 | task 2 | -------------------------------------------------------------------------------- /topic9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/README.md -------------------------------------------------------------------------------- /topic9/img/compile_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/img/compile_error.png -------------------------------------------------------------------------------- /topic9/img/switch_panel_to_terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/img/switch_panel_to_terminal.png -------------------------------------------------------------------------------- /topic9/img/terminal_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/img/terminal_ui.png -------------------------------------------------------------------------------- /topic9/img/windows_unzip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/img/windows_unzip.png -------------------------------------------------------------------------------- /topic9/task.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vscodejp/handson-hello-vscode/HEAD/topic9/task.zip -------------------------------------------------------------------------------- /topic9/try-code-command.md: -------------------------------------------------------------------------------- 1 | # code コマンドを使って開いて見るファイル 2 | --------------------------------------------------------------------------------