For example `10.5`. Some other editors accept that value.
Thanks :-)
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/703
A quick shortcut I am used to working is hitting ctrl and the left arrow a few times, and I end up at the start of the line I am editing. This allows me to do things like select a few lines and group-indent them, without having to use the mouse or hit too many keys.
However, in Geany doing this will never get you to the start of a line, as it will jump up a line instead.
--
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/2258
@elextr, @b4n:
I tested this PR on Ubuntu 18.04.3 with the changes applied to the current master branch:
- it does **not** change the behavior of the recent files list: not existing/available recent files are still shown in the list
- the behavior of the recent projects list **has changed**: not existing/available recent projects are not shown in the list anymore
> But the display list is what gets saved when Geany quits, so they are removed.
Confirmed. Once invalid recent projects are removed and do not re-appear after a closing/opening Geany.
**Conclusion:** the PR seems to work as described in the above discussion.
--
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/pull/364#issuecomment-520561621
@LarsGit223 yeah, I know I didn't test it and I read @b4n as saying he didn't either, so thats all.
--
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/pull/364#issuecomment-520300189
@elextr: no, but if that's what missing I can do it. Will report the result.
--
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/pull/364#issuecomment-520299641
Please allow users to view files sorted alphabetically in the left tree list for each folder. Basically for each new folder in which files are open, display the list of files open sorted by alphabet. That way its easier dealing with a huge list of open files. Thanks!
--
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/2152
@elextr, @kugel-:
Yes, it is still valid, see the code below taken from current master today:
``` C
static void remove_callbacks(Plugin *plugin)
{
GArray *signal_ids = plugin->signal_ids;
SignalConnection *sc;
if (signal_ids == NULL)
return;
foreach_array(SignalConnection, sc, signal_ids)
{
g_signal_handler_disconnect(sc->object, sc->handler_id);
g_object_weak_unref(sc->object, on_object_weak_notify, plugin);
}
g_array_free(signal_ids, TRUE);
}
```
It would be cool if someone could fix the conflicts and merge this - one PR less.
--
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/pull/183#issuecomment-520253682