Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2019-10-11 06:21:15 +0000
committerAlexander Kurtakov2019-10-11 06:21:15 +0000
commitf5ca55eae0cb8fb6c148541b8d46e6008155bbaf (patch)
tree2b2f4998016d6139628e6af9e8fc243a1106b1e5
parent6ec0726da1db60d5829eaddb7365bcd195650f5b (diff)
downloadeclipse.platform.text-f5ca55eae0cb8fb6c148541b8d46e6008155bbaf.tar.gz
eclipse.platform.text-f5ca55eae0cb8fb6c148541b8d46e6008155bbaf.tar.xz
eclipse.platform.text-f5ca55eae0cb8fb6c148541b8d46e6008155bbaf.zip
Bug 483846 - [typing] Spaces only mode: backspace key to remove many
spaces Add missing since tag. Change-Id: I676ddf1079d08f75c30deae214e809742bc3961d Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditor.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditor.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditor.java
index 7e884ee217c..546d8225d48 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditor.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditor.java
@@ -2234,6 +2234,9 @@ public abstract class AbstractDecoratedTextEditor extends StatusTextEditor {
return getPreferenceStore() != null && getPreferenceStore().getBoolean(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_SPACES_FOR_TABS);
}
+ /**
+ * @since 3.13
+ */
@Override
protected boolean isSpacesAsTabsDeletionEnabled() {
return getPreferenceStore() != null && getPreferenceStore().getBoolean(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_DELETE_SPACES_AS_TABS);

Back to the top