[Geany] quick find behavior

2012-09-06 Thread Gordon Wrigley
Hi I'd like different behavior from ctrl-g (currently find next). Originally I was going to ask if there was a way of making it like Chrome where in addition to jumping to the next result it also moves focus to the quick search box and highlights the current content of the quick search box so you

[Geany] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Colomban Wendling
Hi guys, I saw that the ruby parser don't properly generate tags declarations like: class Foo::Bar end which should generate a tag Bar with the scope Foo; but it generates a tag Foo and simply ignores Bar. This seems to apply to modules, classes and methods at least -- almost

Re: [Geany] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Colomban Wendling
Le 06/09/2012 20:58, Colomban Wendling a écrit : Hi guys, I saw that the ruby parser don't properly generate tags declarations like: class Foo::Bar end which should generate a tag Bar with the scope Foo; but it generates a tag Foo and simply ignores Bar. This seems to

Re: [Geany] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Lex Trotman
On 7 September 2012 04:58, Colomban Wendling lists@herbesfolles.org wrote: Hi guys, I saw that the ruby parser don't properly generate tags declarations like: class Foo::Bar end which should generate a tag Bar with the scope Foo; but it generates a tag Foo and simply

Re: [Geany] quick find behavior

2012-09-06 Thread Lex Trotman
On 7 September 2012 01:33, Gordon Wrigley gordon.wrig...@gmail.com wrote: Hi I'd like different behavior from ctrl-g (currently find next). Originally I was going to ask if there was a way of making it like Chrome where in addition to jumping to the next result it also moves focus to the

Re: [Geany] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Colomban Wendling
Le 07/09/2012 00:49, Lex Trotman a écrit : On 7 September 2012 04:58, Colomban Wendling lists@herbesfolles.org wrote: Hi guys, I saw that the ruby parser don't properly generate tags declarations like: class Foo::Bar end which should generate a tag Bar with the scope

Re: [Geany] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Lex Trotman
[...] OK, maybe I could take a look at how the C++ parser parses A::B::C, maybe they have a better solution; but what I'm saying is that the Yeah, without much knowledge of Ruby or Vala I was just suggesting that C++ *seemed* to work different so it might be worth a look despite the

[Geany] setting up 'plaintext' file type

2012-09-06 Thread Miranda Hawarden-Ogata
Hi, I've been using geany for a couple months and really like it as my nedit replacement, but I'm running into an annoying problem that I'm not sure how to resolve. I maintain a running notes file in my public_html directory, its extension is one of our invisible php includes but I don't want

Re: [Geany] setting up 'plaintext' file type

2012-09-06 Thread Lex Trotman
On 7 September 2012 12:50, Miranda Hawarden-Ogata hawar...@ifa.hawaii.edu wrote: Hi, I've been using geany for a couple months and really like it as my nedit replacement, but I'm running into an annoying problem that I'm not sure how to resolve. I maintain a running notes file in my

Re: [Geany] setting up 'plaintext' file type

2012-09-06 Thread Matthew Brush
On 12-09-06 07:50 PM, Miranda Hawarden-Ogata wrote: Hi, I've been using geany for a couple months and really like it as my nedit replacement, but I'm running into an annoying problem that I'm not sure how to resolve. I maintain a running notes file in my public_html directory, its extension is

[Geany-devel] Scoped Ruby declarations, with a hackish patch

2012-09-06 Thread Colomban Wendling
Hi guys, I saw that the ruby parser don't properly generate tags declarations like: class Foo::Bar end which should generate a tag Bar with the scope Foo; but it generates a tag Foo and simply ignores Bar. This seems to apply to modules, classes and methods at least -- almost