Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbbb2c2f

Browse files
author
dotnet-automerge-bot
authored
Merge pull requestdotnet#5742 from Microsoft/merges/master-to-dev16.0
Merge master to dev16.0
2 parents1b5a71f +4529c8f commitbbb2c2f

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

‎DEVGUIDE.md‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ Testing the .NET Core version of the F# compiler on macOS and Linux is TBD.
130130

131131
To build and test Visual F# IDE Tools, install these requirements:
132132

133-
-[Visual Studio 2017](https://www.visualstudio.com/downloads/)
133+
- Download[Visual Studio 2017](https://www.visualstudio.com/downloads/)
134+
- Launch the Visual Studio Installer
134135
- Under the "Windows" workloads, select ".NET desktop development"
135136
- Select "F# desktop language support" under the optional components
136137
- Under the "Other Toolsets" workloads, select "Visual Studio extension development"

‎vsintegration/src/FSharp.Editor/Completion/CompletionProvider.fs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ type internal FSharpCompletionProvider
221221
let!_parsingOptions,projectOptions= projectInfoManager.TryGetOptionsForEditingDocumentOrProject(document)
222222
let!textVersion= context.Document.GetTextVersionAsync(context.CancellationToken)
223223
letgetAllSymbols(fileCheckResults:FSharpCheckFileResults)=
224-
if settings.IntelliSense.ShowAllSymbols
224+
if settings.IntelliSense.IncludeSymbolsFromUnopenedNamespacesOrModules
225225
then assemblyContentProvider.GetAllEntitiesInProjectAndReferencedAssemblies(fileCheckResults)
226226
else[]
227227
let!results=

‎vsintegration/src/FSharp.Editor/Options/EditorOptions.fs‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ type EnterKeySetting =
2828
typeIntelliSenseOptions=
2929
{ ShowAfterCharIsTyped:bool
3030
ShowAfterCharIsDeleted:bool
31-
ShowAllSymbols:bool
31+
IncludeSymbolsFromUnopenedNamespacesOrModules:bool
3232
EnterKeySetting:EnterKeySetting}
3333
static memberDefault=
3434
{ ShowAfterCharIsTyped=true
3535
ShowAfterCharIsDeleted=true
36-
ShowAllSymbols=true
36+
IncludeSymbolsFromUnopenedNamespacesOrModules=false
3737
EnterKeySetting= EnterKeySetting.NeverNewline}
3838

3939

@@ -58,7 +58,7 @@ type CodeFixesOptions =
5858
{// We have this off by default, disable until we work out how to make this low priority
5959
// See https://github.com/Microsoft/visualfsharp/pull/3238#issue-237699595
6060
SimplifyName=false
61-
AlwaysPlaceOpensAtTopLevel=false
61+
AlwaysPlaceOpensAtTopLevel=true
6262
UnusedOpens=true
6363
UnusedDeclarations=true}
6464

‎vsintegration/src/FSharp.UIResources/IntelliSenseOptionControl.xaml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<CheckBoxx:Name="charDeleted"IsEnabled="{Binding IsChecked, ElementName=charTyped}"IsChecked="{Binding ShowAfterCharIsDeleted}"
2626
Content="{x:Static local:Strings.Show_completion_list_after_a_character_is_deleted}"/>
2727
</StackPanel>
28-
<CheckBoxx:Name="showAllSymbols"IsChecked="{BindingShowAllSymbols}"
28+
<CheckBoxx:Name="showAllSymbols"IsChecked="{BindingIncludeSymbolsFromUnopenedNamespacesOrModules}"
2929
Content="{x:Static local:Strings.Show_all_symbols}"/>
3030
</StackPanel>
3131
</GroupBox>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp