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:
authorMike Krüger <mikkrg@microsoft.com>2018-10-15 13:05:34 +0300
committerMike Krüger <mikkrg@microsoft.com>2018-10-16 10:05:12 +0300
commit0923721f139dc0e298678e9bbeb21a18d88afa31 (patch)
tree00edecb31c56d9ae31a9bd8881c6889b7d0f5c27 /main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs
parentb58fedcea3ff7e61f3aeb80eab502905556f236c (diff)
Fixes VSTS Bug 701970: [Feedback] "Show Invisible Characters" setting
keeps being reset in 7.6 https://devdiv.visualstudio.com/DevDiv/_workitems/edit/701970
Diffstat (limited to 'main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs')
-rw-r--r--main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs17
1 files changed, 1 insertions, 16 deletions
diff --git a/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs b/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs
index 2ea9d7a5af..87031f2987 100644
--- a/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs
+++ b/main/src/core/Mono.TextEditor.Shared/Mono.TextEditor/ITextEditorOptions.cs
@@ -26,25 +26,10 @@
using System;
using Mono.TextEditor.Highlighting;
+using MonoDevelop.Ide.Editor;
namespace Mono.TextEditor
{
- enum ShowWhitespaces
- {
- Never,
- Selection,
- Always
- }
-
- [Flags]
- enum IncludeWhitespaces
- {
- None = 0,
- Space = 1,
- Tab = 2,
- LineEndings = 4,
- All = Space | Tab | LineEndings
- }
interface ITextEditorOptions : IDisposable
{