Exemple #1
0
        public Task <ExecutionResult> InitializeAsync()
        {
            _commands = PythonCommonInteractiveEvaluator.GetInteractiveCommands(_serviceProvider, CurrentWindow, this);

            CurrentWindow.TextView.Options.SetOptionValue(InteractiveWindowOptions.SmartUpDown, CurrentOptions.UseSmartHistory);
            CurrentWindow.WriteLine(Strings.DebugReplHelpMessage);

            CurrentWindow.ReadyForInput += OnReadyForInput;
            return(ExecutionResult.Succeeded);
        }
 public string FormatClipboard()
 {
     return(PythonCommonInteractiveEvaluator.FormatClipboard(_serviceProvider, CurrentWindow));
 }