This repository was archived by the owner on Apr 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Visual Studio Shortcuts
czaloj edited this page Aug 1, 2015
·
24 revisions
(Highly Recommend) http://www.wholetomato.com/downloads/downloadTrial.asp
-
F12Go to declaration -
Ctrl + LCut line -
F5Run -
Ctrl + ASelect All -
Ctrl + F5Run without debugger -
Ctrl + FSearch -
Ctrl + HSearch and replace -
Ctrl + M + OCollapse all. -
Ctrl + M + LCollapse/Expand all. -
Ctrl + M + PExpand all and disable outlining. -
Ctrl + M + MCollapse/expand the current section.
-
Alt + Shift + RRename -
Alt + Shift + FFind References
To use a custom snippet, first create it with VASSISTX->Insert VA Snippet->Edit Va Snippets. Give it a name and a shortcut. If the snippet contains a $selected$ field, then to insert it you simply highlight the code you want to surround with your snippet, then right click and click the surround with tab. You should then see your snippet. If there is no $selected$ field, then to insert the snippet anywhere in your code just type the shortcut and intellisense will auto-complete it for you. Press enter and the snippet will be pasted!
Seed of Andromeda Header (Shortcut: soah)
//
// $FILE_BASE$.$FILE_EXT$
// Seed of Andromeda
//
// Created by Cristian Zaloj on $DAY$ $MONTHNAME$ $YEAR$
// Copyright 2014 Regrowth Studios
// All Rights Reserved
//
// Summary:
// $end$
//
#pragma once
#ifndef $FILE_BASE$_$FILE_EXT$__
#define $FILE_BASE$_$FILE_EXT$__
$selected$
#endif // !$FILE_BASE$_$FILE_EXT$__