eclipse.platform
eclipse.platform copied to clipboard
This commit removes the deprecated constants in VariableColumnPresentation and updates references in DefaultVariableCellModifier and WatchExpressionCellModifier to use the new constants.
`java.io.File.toURL()` is deprecated and marked for removal. Replace it with `file.toURI().toURL()`, where `toURL()` is called on a `java.net.URI` instance, which is not deprecated and handles encoding correctly.
Check whether context is null or not before invoking getText() Fixes : https://github.com/eclipse-platform/eclipse.platform/issues/1689
This feature will allow users to compare either the selected text or the entire editor content against the current clipboard contents similar to other IDEs. If users want to just...
Hello, when operating on a mounted [WSL](https://learn.microsoft.com/en-us/windows/wsl/) file system from within Windows, Eclipse shows inconsistencies regarding the `PROJECT_LOC` path variable in case of projects with non-standard locations. 1. When a...
Replace String[] array with individual Object arguments in NLS.bind calls to resolve type mismatch warnings
### Problem The Eclipse IDE has a bug where certain user actions (such as saving edits or interacting with version management) are blocked during the build process in the Eclipse...
- part of eclipse-platform/eclipse.platform.releng.aggregator#2959 - add 2 file system modules for FreeBSD: `org.eclipse.core.filesystem.freebsd.aarch64` and `org.eclipse.core.filesystem.freebsd.x86_64` - add a Makefile to compile the file system natives for FreeBSD. To support cross-compiling...
Outputs some text with ANSI escape sequences to the console For example with: ``` System.out.println("Hello \033[91mRED\033[m \033[101mRED\033[m world!"); ``` The resulting console output is colored (red foreground / background), and...
Currently processes are launched as a forked process without a terminal session attached to them. Some features of processes require a terminal session (e.g. autocompletion) and currently not work when...