internal LaunchEditorKeyProcessor(IWpfTextView view, RegexEditorService regexEditorService)
        {
            this.view = view;
            this.regexEditorService = regexEditorService;

            this.keyTypeConverter = new KeyTypeConverter();
        }
        internal RegexCompletionController(IList <ITextBuffer> subjectBuffers, ITextView subjectTextView, ICompletionBroker completionBroker)
        {
            this.subjectBuffers   = subjectBuffers;
            this.subjectTextView  = subjectTextView;
            this.completionBroker = completionBroker;
            this.keyTypeConverter = new KeyTypeConverter();

            this.BuildCompletionProviders();
            this.AttachToKeyEvents();
        }
 internal RegexEditorKeyProcessor(IEditorOperations editorOperations)
 {
     this.editorOperations = editorOperations;
     this.keyTypeConverter = new KeyTypeConverter();
 }