mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
[full-line] ML-3924 Add chunks from the most recent caret positions
GitOrigin-RevId: d2d34ab1d192fbb6ed0c6ec555eb4e7a9dda055e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
54eaccabd8
commit
7bfdb60f9f
@@ -36,6 +36,8 @@ public abstract class IdeDocumentHistory {
|
||||
public abstract List<IdeDocumentHistoryImpl.PlaceInfo> getChangePlaces();
|
||||
@ApiStatus.Internal
|
||||
public abstract List<IdeDocumentHistoryImpl.PlaceInfo> getBackPlaces();
|
||||
@ApiStatus.Internal
|
||||
public abstract List<IdeDocumentHistoryImpl.PlaceInfo> getForwardPlaces();
|
||||
|
||||
@ApiStatus.Internal
|
||||
public abstract void removeChangePlace(@NotNull IdeDocumentHistoryImpl.PlaceInfo placeInfo);
|
||||
|
||||
@@ -455,6 +455,8 @@ open class IdeDocumentHistoryImpl(
|
||||
|
||||
final override fun getBackPlaces(): List<PlaceInfo> = java.util.List.copyOf(backPlaces)
|
||||
|
||||
final override fun getForwardPlaces(): List<PlaceInfo> = java.util.List.copyOf(forwardPlaces)
|
||||
|
||||
final override fun getChangePlaces(): List<PlaceInfo> = java.util.List.copyOf(changePlaces)
|
||||
|
||||
final override fun removeBackPlace(placeInfo: PlaceInfo) {
|
||||
|
||||
Reference in New Issue
Block a user