[Geany-Devel] Sidebar documents tree

2014-04-27 Thread Pavel Roschin
Almost complete tree-like document list in sidebar. This is clever tree (in comparison to treebrowser or something): it splits path on demand while you open documents. I'm also planning directory name shortening. Here is a screenshot: http://pbrd.co/1lXDKA9 This is *not* plugin and needs serious

Re: [Geany-Devel] Implementing stdlib/glib in Geany

2014-04-27 Thread Colomban Wendling
Le 27/04/2014 22:28, Pavel Roschin a écrit : > I found interesting function in utils.c: > > gboolean utils_str_equal(const gchar *a, const gchar *b) > { > [...] > > while (*a == *b++) > if (*a++ == '\0') > return TRUE; > > return FALSE; > } >

Re: [Geany-Devel] multiterm should be disabled if no valac is found

2014-04-27 Thread Thomas Martitz
Am 27.04.2014 22:08, schrieb Colomban Wendling: Le 27/04/2014 21:24, Matthew Brush a écrit : On 14-04-27 05:39 AM, Dimitar Zhekov wrote: $ ./autogen.sh ... checking for valac... valac configure: WARNING: no proper vala compiler found configure: WARNING: you will not be able to compile vala sour

Re: [Geany-Devel] multiterm should be disabled if no valac is found

2014-04-27 Thread Matthew Brush
On 14-04-27 01:08 PM, Colomban Wendling wrote: Le 27/04/2014 21:24, Matthew Brush a écrit : On 14-04-27 05:39 AM, Dimitar Zhekov wrote: $ ./autogen.sh ... checking for valac... valac configure: WARNING: no proper vala compiler found configure: WARNING: you will not be able to compile vala sourc

Re: [Geany-Devel] Python question

2014-04-27 Thread Pavel Roschin
> …or just write C for 5 minutes instead of fighting Python for 5 days :) …or just merge 7-month PR #172 :) Thanks. Fighting Pythons is useful to check new GeanyPy plugin usability. Also one new bug was discovered. -- Best regards, Pavel Roschin aka RPG __

[Geany-Devel] Implementing stdlib/glib in Geany

2014-04-27 Thread Pavel Roschin
I found interesting function in utils.c: gboolean utils_str_equal(const gchar *a, const gchar *b) { /* (taken from libexo from os-cillation) */ if (a == NULL && b == NULL) return TRUE; else if (a == NULL || b == NULL) return FALSE; while (*a == *b++)

Re: [Geany-Devel] multiterm should be disabled if no valac is found

2014-04-27 Thread Colomban Wendling
Le 27/04/2014 21:24, Matthew Brush a écrit : > On 14-04-27 05:39 AM, Dimitar Zhekov wrote: >> $ ./autogen.sh >> ... >> checking for valac... valac >> configure: WARNING: no proper vala compiler found >> configure: WARNING: you will not be able to compile vala source files >> ... >> Plugins: >> Mult

Re: [Geany-Devel] multiterm should be disabled if no valac is found

2014-04-27 Thread Matthew Brush
On 14-04-27 05:39 AM, Dimitar Zhekov wrote: $ ./autogen.sh ... checking for valac... valac configure: WARNING: no proper vala compiler found configure: WARNING: you will not be able to compile vala source files ... Plugins: MultiTerm: yes $ make ... make[3]: Entering directory `/home/build/proje

[Geany-Devel] Downtime of geany.org and lists on Saturday, May 03 2014

2014-04-27 Thread Enrico Tröger
Hi, one of the hard disks in the server where geany.org is hosted recently showed up some errors and so we will change the disk against a new one just to be prevent a complete failure in advance. This maintenance is planned for upcoming Saturday, May 03 2014. Therefore the server and its services

[Geany-Devel] multiterm should be disabled if no valac is found

2014-04-27 Thread Dimitar Zhekov
$ ./autogen.sh ... checking for valac... valac configure: WARNING: no proper vala compiler found configure: WARNING: you will not be able to compile vala source files ... Plugins: MultiTerm: yes $ make ... make[3]: Entering directory `/home/build/projects/plugins/testing/multiterm/src' VALAC multi