Re: [Github-comments] [geany/geany] Geany 1.28 "Find in files" doesn't work in Windows 7 64bit OS (#1229)

2016-09-22 Thread Matthew Brush
In the longer term, it would be great to unify FiF search with the other 
searches and using the same regex engine/syntax instead of relying on a 
different external tool for the one search type. Writing a recursive directory 
enumeration and matching files is pretty easy with GLib/GIO and it could also 
fix the bug where the open (unsaved) documents aren't searched properly.

-- 
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/1229#issuecomment-248926612

Re: [Github-comments] [geany/geany] Modernize Windows nightly builds (#1241)

2016-09-22 Thread Matthew Brush
@eht16 yeah, though continuous integration is important and it's better (and 
easier) when it's testing the actual build than a different cross-compilation 
build. We could purchase a license using donations money.

Alternatively, maybe we could use [AppVeyor](https://www.appveyor.com/)?

-- 
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/1241#issuecomment-248925330

Re: [Github-comments] [geany/geany] Highlight C function names (patch available) (#1231)

2016-09-22 Thread elextr
Also of note is that the expression before it ends in `.` so it must be an 
non-static member, so it can't be a type so the expression can't be a 
constructor, so it must be a function call.  Though the most reliable method 
determining it of course remains looking at the type returned by `eval()` and 
what member `as<>` is.

-- 
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/1231#issuecomment-248913135

Re: [Github-comments] [geany/geany] Highlight C function names (patch available) (#1231)

2016-09-22 Thread linvinus
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/1231#issuecomment-248911280

Re: [Github-comments] [geany/geany] Highlight C function names (patch available) (#1231)

2016-09-22 Thread elextr
Well, its an application of the function call `()` operator, so I guess it is a 
form of call.

-- 
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/1231#issuecomment-248910606

Re: [Github-comments] [geany/geany] Highlight C function names (patch available) (#1231)

2016-09-22 Thread linvinus
hi.
can someone help me?
i don't understand in this example 
https://github.com/Olga-Yakovleva/RHVoice/blob/6ce2461e0a73c46d7ee809e9bd9fd316869aeaf0/src/core/language.cpp#L870
```C++
stress_pattern 
stress=word_with_syls.eval("word_stress_pattern").as(); 
```
`as()` is a function call or not?



-- 
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/1231#issuecomment-248907389

Re: [Github-comments] [geany/geany] Geany 1.28 "Find in files" doesn't work in Windows 7 64bit OS (#1229)

2016-09-22 Thread Enrico Tröger
I'm not too sure if it is fine. But also tend to use the patch as without 
`--recurse` is broken completely, with the patch it works but with the risk of 
running into loops.

I'd first would like to get some feedback from @VIVEKLUCKY1848 and then 
probably merge it.

-- 
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/1229#issuecomment-248827391

Re: [Github-comments] [geany/geany] Modernize Windows nightly builds (#1241)

2016-09-22 Thread Enrico Tröger
In theory, we could run a VM on the server. But I personally find it overkill 
just for nightly builds and we would need a license as well.
I think cross-compiling for the nightly builds is fine, it just needs some 
initial efforts.

-- 
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/1241#issuecomment-248826983