This repository has been archived by the owner on Oct 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1312 from vasily-kirichenko/peek-definition-docs
Peek definition docs
- Loading branch information
Showing
8 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
(*** hide ***) | ||
// This block of code is omitted in the generated HTML documentation. Use | ||
// it to define helpers that you do not want to show in the documentation. | ||
#I "../../bin" | ||
|
||
(** | ||
Peek Definition (Alt + F12) command (Visual Studio 2015+ only) | ||
---------------- | ||
This feature can also be activated through Peek Definition context menu. | ||
It opens a symbol definition in a special view, embedded into current one. | ||
Although this feature works in Visual Studio 2013 for C#/VB files, a public API | ||
was introduced only in Visual Studio 2015, so we cannot support it in previous | ||
versions. | ||
Here is a screencast in VS2015: | ||
![PeekDefinition](img/peek_definition.gif) | ||
*) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace System | ||
open System.Reflection | ||
open System.Runtime.CompilerServices | ||
|
||
[<assembly: InternalsVisibleToAttribute("FSharpVSPowerTools.Tests")>] | ||
[<assembly: AssemblyTitleAttribute("FSharpVSPowerTools.Logic.VS2013")>] | ||
[<assembly: AssemblyProductAttribute("FSharpVSPowerTools")>] | ||
[<assembly: AssemblyDescriptionAttribute("A collection of additional commands for F# in Visual Studio")>] | ||
[<assembly: AssemblyVersionAttribute("2.3.0")>] | ||
[<assembly: AssemblyFileVersionAttribute("2.3.0")>] | ||
do () | ||
|
||
module internal AssemblyVersionInformation = | ||
let [<Literal>] Version = "2.3.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters