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
Another Buster victim here. GTK+3 `gtk-auto-mnemonics` and `gtk-enable-mnemonics` are deprecated long time as I see. Is there any workarounds or hacks for that?
--
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/2215
IMHO we could close this unmerged if PR #882 gets merged because all issues then seem to have been fixed in other PRs.
@b4n, @kugel-: what do you think?
--
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/206#issuecomment-510893578
LarsGit223 commented on this pull request.
> @@ -26,7 +26,7 @@
* \brief it is the graphical user interface of the geany miniscript plugin
*/
#include "config.h"
-#include "geany.h"
+#include "geanyplugin.h"
I do not get that error if I build from current master.
--
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/206#discussion_r302988379
LarsGit223 commented on this pull request.
>
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif
-#include "ui_utils.h"
-
-#include "document.h"
-#include "keybindings.h"
-#include "plugindata.h"
-#include "geanyfunctions.h"
-
#include <glib.h>
This seems to have been fixed separately in f2ab51090839b2a93ec8cc3ed0e1e4874ff9b3cf.
--
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/206#discussion_r302985606