Rüdiger Herrmann

Results 44 issues of Rüdiger Herrmann

The editor for bnd files should support the commonly used by bindings Ctrl+7 and Ctrl+Shift+C to comment and uncomment the current selection.

I am aware that there is an _Add Sources_ action in the _Repositories_ view to attach sources to individual bundles on demand. Since source attachments are crucial for debugging, reading...

My Bndtools workspace got stuck in an endless _Building workspace_ loop (will try to isolate this and report separately). Before that happened, I opened a Jar editor on a jar...

To reproduce, configure the workspace to include a remote repository, for example, the _Bndtools Hub_ repository from https://raw.githubusercontent.com/bndtools/bundle-hub/master/index.xml.gz and open the _Repositories view_. Enable the workspace refresh option in _Preferences_...

The _Workspace_ tab of the _Workspace Config_ editor unnecessarily wastes a lot of screen real estate for the first two sections. The only interesting content, the list of plugins, cannot...

Bndtools has a _Build before launching_ setting (in Preferences > Bndtools). However, the debug framework already has such setting (see _Run/Debug_ > _Launching_ > _Build (if required) before launching_) that...

While playing around, I somehow managed to eliminate JUnit from the non-osgi repository. And of course Bndtools rightfully complains that it cannot find the referenced libraries. But unfortunately, it complains...

The _Resolution Results_ ( has two collapsible sections named _Optional Resources_ and _Reasons_. However, collapsing a section does not cause the surrounding controls to take advantage from the free space....

In an attempt to test the behaviour of an SQL statement when run in parallel, I tried to execute the statement from multiple workers. Here is a striped-down version of...

I would like to be able to assert the type of an error that is thrown with `expect(...).toThrow()`. For example: ```ts expect(() => rgbColor(255, 255, 999)).toThrow(RangeError); ```