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

github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/Editor/Text/Def/TextUI/Commanding/Commands/ToggleCompletionListFilterCommandArgs.cs')
-rw-r--r--src/Editor/Text/Def/TextUI/Commanding/Commands/ToggleCompletionListFilterCommandArgs.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Editor/Text/Def/TextUI/Commanding/Commands/ToggleCompletionListFilterCommandArgs.cs b/src/Editor/Text/Def/TextUI/Commanding/Commands/ToggleCompletionListFilterCommandArgs.cs
new file mode 100644
index 0000000..00509be
--- /dev/null
+++ b/src/Editor/Text/Def/TextUI/Commanding/Commands/ToggleCompletionListFilterCommandArgs.cs
@@ -0,0 +1,15 @@
+namespace Microsoft.VisualStudio.Text.Editor.Commanding.Commands
+{
+ public sealed class ToggleCompletionListFilterCommandArgs : EditorCommandArgs
+ {
+ public string AccessKey { get; }
+
+ public ToggleCompletionListFilterCommandArgs(
+ ITextView textView,
+ ITextBuffer subjectBuffer,
+ string accessKey) : base(textView, subjectBuffer)
+ {
+ AccessKey = accessKey;
+ }
+ }
+} \ No newline at end of file