Roaming Settings
You will not miss noting this feature, because as soon as you launch Visual Studio 2013 for the first time, you will get the below dialog prompting you to sign-in.You can sign-in to Visual Studio 2013 using your Microsoft account (hotmail.com, live.com, etc.). After you sign-in to Visual Studio 2013, your settings are sync’d with your Microsoft account. Next time when you use Visual Studio 2013 on another computer, you can use the same Microsoft account to sign-in and find your settings applied to it. This is pretty awesome if you have a couple of computers, like, one at home and one in the office and if you use Visual Studio in it. I find this useful as I have faced problems in font and keyboard shortcuts settings that people (colleagues) have set differently. Now you don’t need to waste time to repeatedly configure these settings each time you use Visual Studio on a new machine (or in your colleague’s machine).
CodeMap – Visual Debugging
In Visual Studio 2013, when you are in a debugging session, you will find an option called Code Map in the debug toolbar.When you are in Debug mode, clicking this will open a window which shows the visual representation of the execution flow as shown below:
You can call this window as a Visual Call Stack, which shows the sequence of methods that are invoked. People who have spent hours on debugging will realize the potential of this tool, it will help you visualize the code structure better and will speed up your debugging pace. This also helps newcomers to dev teams to grasp existing code easily if they execute and turn this thing on.
You can add comments as shown below:
You can group items as shown below:
There are a bunch of other things that you can do with the CodeMap window, like, highlight the references to a method box, change colors of the method boxes, change the layout from top-down to left to right, etc.
Peek Definition – Alt+F12
In Visual Studio 2013, you have something called Peek Definition above the Go To Definition command.Unlike the Go To Definition command, which shows the definition by opening the actual code file where the definition is present as a new tab (or in preview tab); the Peek Definition shows the definition by displaying an inline frame containing the section of the actual source code file containing the definition as shown below:
(click to enlarge image)
This allows the user to get a quick glimpse of the definition without leaving the current code location.
You can also use Peek Definition command again inside the peek definition frame which opens the definition in the same frame but displays a dotted breadcrumb band at the top right of the peek frame as shown below. This frame allows you to navigate back and forth the open definitions (source files). You can use Ctrl+Alt+- and Ctrl+Alt+= to navigate back and forth respectively.
(click to enlarge image)
Code Lens
You wont miss noting this feature when using Visual Studio 2013. There will be indicators sitting atop of every method in the code editor. Clicking them will show information about the code section as shown below:Here, you can see that a method’s references are shown and seems this information indication doesn’t stop with just references, it has a bunch of things it could show. I found these capabilities of this feature by digging into Visual Studio Options. It looks like it will show Unit test related stuff, authors, changes made by them, etc. You can find the options at Text Editor>All Languages>Code Information Indicators. I haven’t tried to make it show all the information that it could show, in future I may post more about it.
Browser Link
In Visual Studio 2013, you will find an icon near the Start command as shown below:
This
icon is the door to the new feature in Visual Studio 2013 called
Browser Link, this provides you a two way link between Visual Studio and
your browsers. As a basic functionality, it allows you to refresh the
browser window that runs your web application from within Visual Studio.
As of now, Browser Link just refreshes the browser window and I
couldn’t find any other use of it apart from this, but I hope more cool
features will be added to it in the full release of Visual Studio 2013.
To try this, just launch your web application and after it gets
displayed in your browser, do some modifications to your web app in
Visual Studio and click the above shown Browser Link icon, you will find
your browser updated with the changes you made in Visual Studio,
shortcut Ctrl+Alt+Enter.
New Blue Theme
Due
to the popularity of white on black color schemes, in Visual Studio
2012 a dark theme was introduced. For those who preferred the classic
black on white theme, a Light theme was also present. In Visual Studio
2013, a new IDE color theme named as Blue is introduced (this is also
available with Visual Studio 2012 Update 2).
Visual Studio 2013 Light Theme
|
Visual Studio 2013 Blue Theme
|
UI Icons
There have been some debates on the decision of making all the icons in Visual Studio 2012 single colored(Light theme - black on white OR Dark theme - white on black ) some liked the simplicity and some hated to lose the familiarity towards the icons they have been using for years in past versions of Visual Studio. You will immediately note that Visual Studio 2013 has become more colorful. Some of the single colored icons are replaced with colored icons as shown below, click to enlarge the below images.
Visual Studio 2012 - Dark Theme
|
Visual Studio 2013 – Dark Theme
|
(click to enlarge image)
Visual Studio 2012 – Light Theme
|
Visual Studio 2013 – Light Theme
|
(click to enlarge image)
I personally like this version of icons than Visual Studio 2012’s, but I too kind of miss the old icons which were there till Visual Studio 2010, mostly the Debugging section’s code stepping icons. When I first started using Visual Studio 2012, I felt I have to put at least some tiny effort to get used to these icons, but I am a shortcut guy so majorly these icon changes don’t affect me much :).
Feedback & Notifications
In Visual Studio 2013, you will be able to easily give feedback about the product to Microsoft using the icon shown below.Notifications about product updates, etc. are shown in the small area beside this feedback icon. Clicking this flag like icon will open the notifications in a separate pane showing you the list of notifications as shown below:
No comments:
Post a Comment