Visual Studioを使っていると、ショートカットキーを覚えておくと便利です。
ショートカットを記載しているサイトがありましたので、
そこに記載しているショートカットをまとめてみました。
実際にVisual Studio2015で試してみました。
【Visual Studio キーボードショートカット】
・Ctrl + Shift + B : プロジェクトのビルド
・Ctrl + Alt + L : ソリューションエキスプローラーの表示
・Shift + Alt + C : メニューのアーキテクチャ
・Shift + Alt + A : 既存項目の追加
1、編集に関するショートカット
・Ctrl + Enter :「 Insert blank line above the current line(?)」だそうだが、改行してだけ
・Ctrl + Shift + Enter : 「 Insert blank line below the current line(?)」だそうだが、改行してだけ
・Ctrl + Space :インテリセンス(メニュー表示)
・Alt + Shift + 矢印キー(←,↑,↓,→) :カレント位置からコード複数選択
※矢印で複数選択して、纏めて複数文字削除したりする
・Ctrl + } : Match curly braces, brackets
・Ctrl + Shift + } : Select text between matched braces, brackets
・Ctrl + Shift + S : Saves all files and projects
・Ctrl + K, Ctrl + C : Comments the selected lines
・Ctrl + K, Ctrl + U : Uncomments the selected lines
・Ctrl + K, Ctrl + D : Do proper alignment of all the code
・Shift + End : Select the entire line from start to end
・Shift + Home : Select the entire line from end to start
・Ctrl + Delete : Deletes the word to the right of the cursor
2、ナビゲートに関するショートカット・Ctrl + Up/Down : Scrolls the window without moving the cursor
・Ctrl + ? : Take cursor to its previous location
・Ctrl + + : Take cursor to its next location
・F12 :変数など「定義に移動」
3、デバッグに関するショートカット
・Ctrl + Alt + P : Attach to process
・F10 : Debug step over
・F5 : Start debugging
・Shift + F5 : Stop debugging
・Ctrl + Alt + Q : Add quick watch
・F9 : Set or remove a breakpoint
4、検索に関するショートカット
・Ctrl + K Ctrl + K : Bookmark the current line
・Ctrl + K Ctrl + N : Navigates to next bookmark
・Ctrl + . : If you type in a class name like Collection<string> and do not have the proper namespace import, then this shortcut combination will automatically insert the import
・Ctrl + Shift + F : Find in Files
・Shift + F12 : Find all references
・Ctrl + F : 検索ダイアログ表示
・Ctrl + H : Displays the Replace Dialog
・Ctrl + G : Jumps to the line number or go to the line
・Ctrl + Shift + F : Find the references of the selected item in the entire solution
【参考URL】
http://www.codeproject.com/Articles/1010023/Must-Know-Visual-Studio-Keyboard-Shortcuts-Part
http://www.codeproject.com/Articles/1010022/Must-Know-Visual-Studio-Keyboard-Shortcuts-Part
http://www.dotnet-tricks.com/Tutorial/visualstudio/DEI8040212-Visual-Studio-2008,-2010,-2011,-2012-Keyboard-Shortcuts-Keys.html
0 件のコメント:
コメントを投稿