Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornosami <jasonimison@gmail.com>2018-05-02 23:31:07 +0300
committernosami <jasonimison@gmail.com>2018-05-02 23:31:07 +0300
commit62d21b68c86e1622b7c6af9e9653811e3cdf74b9 (patch)
tree6c0a85b7b2f8a515c3ac8e9c26b7d753c9a70c83
parented4bdb6d3c32802e0b71cbbaa71dd5556741ab37 (diff)
-rw-r--r--main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpSyntaxMode.fs11
-rw-r--r--main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpTextEditorCompletion.fs6
2 files changed, 2 insertions, 15 deletions
diff --git a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpSyntaxMode.fs b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpSyntaxMode.fs
index 6273528545..688ad63a5c 100644
--- a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpSyntaxMode.fs
+++ b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpSyntaxMode.fs
@@ -1,11 +1,4 @@
-namespace Test.Namespace
-module Test = ()
-open Test
-namespace Test.Namespace
-open System.IO
-open Test.Namespace
-
-namespace MonoDevelop.FSharp
+namespace MonoDevelop.FSharp
open System
open System.Collections.Generic
@@ -333,7 +326,7 @@ module Patterns =
makeSeg EditorThemeColors.UserTypesInterfaces
| ValueType _ ->
makeSeg EditorThemeColors.UserTypesValueTypes
- //| Keyword ts -> makeSeg EditorThemeColors.
+ //| Keyword ts -> makeSeg (Keywords.getType style ts)
//| Comment -> makeSeg style.CommentsSingleLine
//| StringLiteral -> makeSeg style.String
//| NumberLiteral -> makeSeg style.Number
diff --git a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpTextEditorCompletion.fs b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpTextEditorCompletion.fs
index b537b604e1..4d8f5a9900 100644
--- a/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpTextEditorCompletion.fs
+++ b/main/external/fsharpbinding/MonoDevelop.FSharpBinding/FSharpTextEditorCompletion.fs
@@ -72,11 +72,6 @@ type FSharpMemberCompletionData(name, namespaceToOpen: string option, icon, symb
/// This behaviour roughly matches both VS on Windows and VS Code
override x.IsCommitCharacter (_keyChar, _partialWord) = false
- //Async.StartAsTask(SymbolTooltips.getTooltipInformation symbol, cancellationToken = cancel)
- //Task.FromResult( TooltipInformation())
-
-
-
type SimpleCategory(text) =
inherit CompletionCategory(text, null)
override x.CompareTo other =
@@ -936,7 +931,6 @@ type FSharpTextEditorCompletion() =
override x.GetCurrentParameterIndex (startOffset: int, token) =
- Fil
async {
return ParameterHinting.getParameterIndex(x.Editor, startOffset)
}