Re: [Github-comments] [geany/geany] [Feature request] Live delete/rename tracking (#1139)

2016-10-20 Thread Matthew Brush
The one in GLib/GIO is pretty nice, but it has problems (at least with the inotify backend) which @elextr mentioned, that nobody has provided a work-around for yet. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] [Feature request] Live delete/rename tracking (#1139)

2016-10-20 Thread Matthew Brush
What advantage/portability benefit does Gamin bring over GIO's [FAM](https://git.gnome.org/browse/glib/tree/gio/fam), [inotify](https://git.gnome.org/browse/glib/tree/gio/inotify), [kqueue](https://git.gnome.org/browse/glib/tree/gio/kqueue), and

Re: [Github-comments] [geany/geany] [Feature request] Support different combinations of I/O in Custom Commands (#1037)

2016-10-20 Thread Colomban Wendling
@andy5995 BTW, if you got Python installed, you could simply do: `python3 -c 'from sys import stdin, stdout; stdout.write(stdin.read().title())'` (I recommend using Python 3.x that doesn't need extra care to properly handle Unicode input here) -- You are receiving this because you are

Re: [Github-comments] [geany/geany] [Feature request] Support different combinations of I/O in Custom Commands (#1037)

2016-10-20 Thread Colomban Wendling
@andy5995 The current data is sent to the command's `stdin`, so you should read that, not the command-line arguments. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] [Feature request] Live delete/rename tracking (#1139)

2016-10-20 Thread Andy Alt
Because inotify is Linux-only, would [Gamin](https://people.gnome.org/~veillard/gamin/index.html) ever be considered a suitable substitute? Though I've never used it, and don't see that it works under Windows. -- You are receiving this because you are subscribed to this thread. Reply to this

Re: [Github-comments] [geany/geany] [Feature request] Support different combinations of I/O in Custom Commands (#1037)

2016-10-20 Thread Andy Alt
I wanted to highlight a selection, and have it capitalize the first letter of each word. I tried doing this through Custom Commands. I wrote this ``` #include #include #include int main(int argc, char **argv) { char word[256]; int i; for (i = 1; i < argc; i++) { strcpy (word,

[Github-comments] [geany/geany-plugins] automark color (#492)

2016-10-20 Thread grinapo
Please document that automark uses the **marker_search** color. -- 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/492

[Github-comments] [geany/geany] TOML configuration language support (#1268)

2016-10-20 Thread grinapo
TOML is a fairly strictly defined configuration file syntax, used by various projects, supported by plenty of languages and already supported by some editors. I'm not familar with geany plugin dev (and lacking the time anyway) but maybe someone's interested in creating a syntax highlighting