-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support auto folding of comments and add folding preferences page #1171
Merged
+155
−17
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
* | ||
* Contributors: | ||
* Angelo Zerr <[email protected]> - Add support for 'textDocument/foldingRange' - Bug 537706 | ||
* Sebastian Thomschke (Vegard IT GmbH) - Add comments/region default folding and folding prefs listener | ||
*/ | ||
package org.eclipse.lsp4e.operations.folding; | ||
|
||
|
@@ -38,10 +39,13 @@ | |
import org.eclipse.jface.text.source.projection.ProjectionAnnotation; | ||
import org.eclipse.jface.text.source.projection.ProjectionAnnotationModel; | ||
import org.eclipse.jface.text.source.projection.ProjectionViewer; | ||
import org.eclipse.jface.util.IPropertyChangeListener; | ||
import org.eclipse.jface.util.PropertyChangeEvent; | ||
import org.eclipse.lsp4e.LSPEclipseUtils; | ||
import org.eclipse.lsp4e.LanguageServerPlugin; | ||
import org.eclipse.lsp4e.LanguageServers; | ||
import org.eclipse.lsp4e.internal.DocumentUtil; | ||
import org.eclipse.lsp4e.ui.FoldingPreferencePage; | ||
import org.eclipse.lsp4j.FoldingRange; | ||
import org.eclipse.lsp4j.FoldingRangeKind; | ||
import org.eclipse.lsp4j.FoldingRangeRequestParams; | ||
|
@@ -52,9 +56,7 @@ | |
import org.eclipse.swt.widgets.Canvas; | ||
|
||
/** | ||
* LSP folding reconcilinig strategy which consumes the | ||
* `textDocument/foldingRange` command. | ||
* | ||
* LSP folding reconcilinig strategy which consumes the `textDocument/foldingRange` command. | ||
*/ | ||
public class LSPFoldingReconcilingStrategy | ||
implements IReconcilingStrategy, IReconcilingStrategyExtension, IProjectionListener, ITextViewerLifecycle { | ||
|
@@ -66,12 +68,36 @@ public class LSPFoldingReconcilingStrategy | |
private @Nullable ProjectionViewer viewer; | ||
private List<CompletableFuture<@Nullable List<FoldingRange>>> requests = List.of(); | ||
private volatile long timestamp = 0; | ||
private final boolean collapseImports; | ||
|
||
public LSPFoldingReconcilingStrategy() { | ||
IPreferenceStore store = LanguageServerPlugin.getDefault().getPreferenceStore(); | ||
collapseImports = store.getBoolean("foldingReconcilingStrategy.collapseImports"); //$NON-NLS-1$ | ||
} | ||
private final IPreferenceStore prefStore = LanguageServerPlugin.getDefault().getPreferenceStore(); | ||
private boolean isFoldingEnabled = prefStore.getBoolean(FoldingPreferencePage.PREF_FOLDING_ENABLED); | ||
private boolean collapseComments = prefStore.getBoolean(FoldingPreferencePage.PREF_AUTOFOLD_COMMENTS); | ||
private boolean collapseFoldingRegions = prefStore.getBoolean(FoldingPreferencePage.PREF_AUTOFOLD_REGIONS); | ||
private boolean collapseImports = prefStore.getBoolean(FoldingPreferencePage.PREF_AUTOFOLD_IMPORT_STATEMENTS); | ||
private final IPropertyChangeListener foldingPrefsListener = (final PropertyChangeEvent event) -> { | ||
final var newValue = event.getNewValue(); | ||
if (newValue != null) { | ||
switch (event.getProperty()) { | ||
case FoldingPreferencePage.PREF_FOLDING_ENABLED: | ||
isFoldingEnabled = Boolean.parseBoolean(newValue.toString()); | ||
if(isFoldingEnabled) { | ||
reconcile(null); // requests folding markers from LS | ||
} else { | ||
applyFolding(null); // removes all existing folding markers | ||
} | ||
break; | ||
case FoldingPreferencePage.PREF_AUTOFOLD_COMMENTS: | ||
collapseComments = Boolean.parseBoolean(newValue.toString()); | ||
break; | ||
case FoldingPreferencePage.PREF_AUTOFOLD_REGIONS: | ||
collapseFoldingRegions = Boolean.parseBoolean(newValue.toString()); | ||
break; | ||
case FoldingPreferencePage.PREF_AUTOFOLD_IMPORT_STATEMENTS: | ||
collapseImports = Boolean.parseBoolean(newValue.toString()); | ||
break; | ||
} | ||
} | ||
}; | ||
|
||
/** | ||
* A FoldingAnnotation is a {@link ProjectionAnnotation} it is folding and | ||
|
@@ -132,7 +158,7 @@ public void markCollapsed() { | |
@Override | ||
public void reconcile(@Nullable IRegion subRegion) { | ||
final var document = this.document; | ||
if (projectionAnnotationModel == null || document == null) { | ||
if (!isFoldingEnabled || projectionAnnotationModel == null || document == null) { | ||
return; | ||
} | ||
|
||
|
@@ -165,9 +191,15 @@ private void applyFolding(@Nullable List<FoldingRange> ranges) { | |
.sorted(Comparator.comparing(FoldingRange::getEndLine)) // | ||
.forEach(foldingRange -> { | ||
try { | ||
final var collapsByDefault = foldingRange.getKind() != null | ||
&& switch (foldingRange.getKind()) { | ||
case FoldingRangeKind.Comment -> collapseComments; | ||
case FoldingRangeKind.Imports -> collapseImports; | ||
case FoldingRangeKind.Region -> collapseFoldingRegions; | ||
default -> false; | ||
}; | ||
updateAnnotation(deletions, existing, additions, foldingRange.getStartLine(), | ||
foldingRange.getEndLine(), | ||
collapseImports && FoldingRangeKind.Imports.equals(foldingRange.getKind())); | ||
foldingRange.getEndLine(), collapsByDefault); | ||
} catch (BadLocationException e) { | ||
// should never occur | ||
} | ||
|
@@ -196,6 +228,7 @@ public void install(ITextViewer viewer) { | |
this.viewer = projViewer; | ||
projViewer.addProjectionListener(this); | ||
this.projectionAnnotationModel = projViewer.getProjectionAnnotationModel(); | ||
prefStore.addPropertyChangeListener(foldingPrefsListener); | ||
} | ||
} | ||
|
||
|
@@ -205,6 +238,7 @@ public void uninstall() { | |
if (viewer != null) { | ||
viewer.removeProjectionListener(this); | ||
viewer = null; | ||
prefStore.removePropertyChangeListener(foldingPrefsListener); | ||
} | ||
projectionDisabled(); | ||
} | ||
|
82 changes: 82 additions & 0 deletions
82
org.eclipse.lsp4e/src/org/eclipse/lsp4e/ui/FoldingPreferencePage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2025 Vegard IT GmbH and others. | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
* | ||
* Contributors: | ||
* Sebastian Thomschke (Vegard IT GmbH) - initial implementation. | ||
*******************************************************************************/ | ||
package org.eclipse.lsp4e.ui; | ||
|
||
import org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer; | ||
import org.eclipse.jface.preference.BooleanFieldEditor; | ||
import org.eclipse.jface.preference.FieldEditorPreferencePage; | ||
import org.eclipse.lsp4e.LanguageServerPlugin; | ||
import org.eclipse.swt.SWT; | ||
import org.eclipse.swt.layout.GridData; | ||
import org.eclipse.swt.widgets.Composite; | ||
import org.eclipse.swt.widgets.Label; | ||
import org.eclipse.ui.IWorkbench; | ||
import org.eclipse.ui.IWorkbenchPreferencePage; | ||
|
||
public class FoldingPreferencePage extends FieldEditorPreferencePage implements IWorkbenchPreferencePage { | ||
|
||
public static final String PREF_FOLDING_ENABLED = "foldingReconcilingStrategy.enabled"; //$NON-NLS-1$ | ||
public static final String PREF_AUTOFOLD_COMMENTS = "foldingReconcilingStrategy.collapseComments"; //$NON-NLS-1$ | ||
public static final String PREF_AUTOFOLD_REGIONS = "foldingReconcilingStrategy.collapseRegions"; //$NON-NLS-1$ | ||
public static final String PREF_AUTOFOLD_IMPORT_STATEMENTS = "foldingReconcilingStrategy.collapseImports"; //$NON-NLS-1$ | ||
|
||
public static final class PreferenceInitializer extends AbstractPreferenceInitializer { | ||
@Override | ||
public void initializeDefaultPreferences() { | ||
final var store = LanguageServerPlugin.getDefault().getPreferenceStore(); | ||
store.setDefault(PREF_FOLDING_ENABLED, true); | ||
store.setDefault(PREF_AUTOFOLD_COMMENTS, false); | ||
store.setDefault(PREF_AUTOFOLD_REGIONS, false); | ||
store.setDefault(PREF_AUTOFOLD_IMPORT_STATEMENTS, false); | ||
} | ||
} | ||
|
||
public FoldingPreferencePage() { | ||
super(GRID); | ||
setPreferenceStore(LanguageServerPlugin.getDefault().getPreferenceStore()); | ||
} | ||
|
||
@Override | ||
public void createFieldEditors() { | ||
Composite parent = getFieldEditorParent(); | ||
|
||
// Add check boxes | ||
addField(new BooleanFieldEditor( // | ||
PREF_FOLDING_ENABLED, // | ||
"Enable folding", //$NON-NLS-1$ | ||
parent)); | ||
|
||
// Add a label before the field editors | ||
final var label = new Label(parent, SWT.NONE); | ||
label.setText("Initially fold these elements:"); //$NON-NLS-1$ | ||
label.setLayoutData(new GridData(SWT.FILL, SWT.CENTER, true, false)); | ||
|
||
// Add check boxes | ||
addField(new BooleanFieldEditor( // | ||
PREF_AUTOFOLD_COMMENTS, // | ||
"Comments", //$NON-NLS-1$ | ||
parent)); | ||
addField(new BooleanFieldEditor( // | ||
PREF_AUTOFOLD_COMMENTS, // | ||
"Folding Regions", //$NON-NLS-1$ | ||
parent)); | ||
addField(new BooleanFieldEditor( // | ||
PREF_AUTOFOLD_IMPORT_STATEMENTS, // | ||
"Import statements", //$NON-NLS-1$ | ||
parent)); | ||
} | ||
|
||
@Override | ||
public void init(IWorkbench workbench) { | ||
// Initialization logic if needed | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is initializing the preferences to some value the preferred pattern? I think org.eclipse.lsp4e.ui.LoggingPreferencePage does not initialize its preferences, rather it relies on the defaults of IPreferenceStore.getBoolean. I think this is better because one can change the defaults in LSP4E any time and they will be changed for users as well unless they have set the values themselves. Do you agree with that or do you think it is better to initialize the values? Why then?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know what the preferred way is TBH. I used it because one pref key needs a default value of true and with the initializer I have a single place to define it.