Skip to content
Merged
Show file tree
Hide file tree
Changes from 50 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
6e23a2e
snippets first loook
akhera99 Nov 11, 2021
a74697d
Merge branch 'main' into features/snippets_1
akhera99 Dec 9, 2021
6bda3a9
starting imp
akhera99 Dec 10, 2021
592e07f
still figuring things out
akhera99 Jan 6, 2022
cce51e9
temp
akhera99 Jan 13, 2022
f1bf487
console snippet
akhera99 Feb 1, 2022
e96dfd8
console snippet works
akhera99 Feb 3, 2022
fb20055
tests + correct formatting :)
akhera99 Feb 4, 2022
01b7fef
more tests
akhera99 Feb 4, 2022
e43efd1
more tests, removed old unusued code
akhera99 Feb 4, 2022
e3d9029
added a few comments
akhera99 Feb 7, 2022
3a1ab80
a lot of changes aha
akhera99 Feb 14, 2022
9e3b740
remove any use og a syntaxtoken in the completion provider
akhera99 Feb 15, 2022
555b72f
lots more tests/enumeration of cases
akhera99 Feb 16, 2022
22d3602
fix tests
akhera99 Feb 17, 2022
e66613e
removed unused usings
akhera99 Feb 17, 2022
e225c49
comments + moving to proper directories
akhera99 Feb 18, 2022
695ab2b
rename + more comments
akhera99 Feb 18, 2022
445f6ce
feedback
akhera99 Feb 19, 2022
28d938f
a lot of changes, still need to reformat the introduced usings
akhera99 Feb 25, 2022
95d5317
more changes aha
akhera99 Feb 26, 2022
7e5b410
removed commented out code
akhera99 Feb 26, 2022
a628f93
need to add more tests
akhera99 Feb 28, 2022
21a5e73
simplifier broke, need to add other tests
akhera99 Mar 1, 2022
225cd65
tests
akhera99 Mar 2, 2022
493ccf8
pr feedback
akhera99 Mar 2, 2022
8f40b9f
more comment fixes
akhera99 Mar 2, 2022
0bb9cd8
even more comment fixes
akhera99 Mar 2, 2022
aff0b27
didnt need to be public
akhera99 Mar 2, 2022
eff7227
more pr feedback
akhera99 Mar 2, 2022
6ffd036
more comments
akhera99 Mar 2, 2022
e3c8e8d
locks?
akhera99 Mar 3, 2022
ce0d96b
made rename virtual
akhera99 Mar 3, 2022
2fc54b0
Merge branch 'features/semantic-snippets' into features/snippets_1
akhera99 Mar 3, 2022
604c85d
removed unused method
akhera99 Mar 3, 2022
b558cea
Merge branch 'features/snippets_1' of https://github.com/akhera99/ros…
akhera99 Mar 3, 2022
88d968e
fix failing tests
akhera99 Mar 3, 2022
e2caf59
fix failing item
akhera99 Mar 3, 2022
465a8b5
Merge branch 'features/semantic-snippets' into features/snippets_1
akhera99 Mar 9, 2022
49ab16d
some formatting stuff
akhera99 Mar 9, 2022
5682a6d
more pr feedback
akhera99 Mar 9, 2022
c82acb9
more pr feedback
akhera99 Mar 9, 2022
7633033
fix comments
akhera99 Mar 9, 2022
e9f17f4
more pr feeedback
akhera99 Mar 9, 2022
a36edea
fix name
akhera99 Mar 9, 2022
1a908e0
removed unnecessary check
akhera99 Mar 9, 2022
3be711b
fixed naming
akhera99 Mar 9, 2022
0c98af8
fix completion provider ordering
akhera99 Mar 10, 2022
4a1e4d9
more feedback
akhera99 Mar 11, 2022
20ba1e4
rename file as well
akhera99 Mar 11, 2022
1d4fe39
stop using tryadd
akhera99 Mar 11, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.Linq;
using Microsoft.CodeAnalysis.Completion;
using Microsoft.CodeAnalysis.Completion.Providers;
using Microsoft.CodeAnalysis.CSharp.Completion.CompletionProviders.Snippets;
using Microsoft.CodeAnalysis.CSharp.Completion.Providers;
using Microsoft.CodeAnalysis.Editor.UnitTests;
using Microsoft.CodeAnalysis.Shared.Utilities;
Expand Down Expand Up @@ -64,6 +65,7 @@ public void TestCompletionProviderOrder()
typeof(ExtensionMethodImportCompletionProvider),
typeof(AggregateEmbeddedLanguageCompletionProvider),
typeof(FunctionPointerUnmanagedCallingConventionCompletionProvider),
typeof(CSharpSnippetCompletionProvider),

// Built-in interactive providers
typeof(LoadDirectiveCompletionProvider),
Expand Down
Loading