It would be awesome, if the plugin offer a way to delete every n line. I've got regular cases were I need to delete just every second line and somehow I miss this feature. Example:
```
line 1
line 2
line 3
line 4
line 5
```
would become
```
line 1
line 3
line 5
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/772
Scope automatically evaluates an expression if the mouse pointer is hovered over it. But before this change it only evaluated words. E.g. if the mouse was hovered over ```structa->item1``` then scope would have evaluated ```structa``` or ```itemb``` depending on the exact position of the mouse pointer. With this change it will instead evaluate the value of ```structa->item1```.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/823
-- Commit Summary --
* scope: Improved evaluation on-hover
-- File Changes --
M scope/src/tooltip.c (5)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/823.patchhttps://github.com/geany/geany-plugins/pull/823.diff
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/823
The following sequence of actions crashes Geany:
1. start debugging a program with the scope plugin
1. wait for a breakpoint
1. in the message window select _"Debug"_ and then select tab _"Locals"_
1. right click inside the tab to show the context menu, select _"Refresh"_
1. Geany crashes (not always but often)
Remark: the crash does not occur if the user first left clicks into the _"Locals"_ tab content area before selecting _"Refresh"_.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/824
NSIS 3.0 is out for a while and there are MSYS2 packages for NSIS 3.x which would make the release process on Windows easier.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/1302
Since the 3 commits on June 2016, the Tasks functionality has stopped working on non-C files (i.e. .c and .h work fine, filling up the tasks) like .vhd
The 3 commits in June reworked the task-keywords detection loop and limited it to search only within comments.
Now it doesn't find tasks in .vhd files, even if the "TODO" keyword is within a .vhd comment, which is otherwise visually styled in the editor as defined in filetypes.vhdl, so that geany does indeed detect VHDL comments fine.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/530
When using the Tools->Workbench->Settings changed options are not saved to configuration file of workbench project
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/841