[Github-comments] [geany/geany-plugins] Travis fails, needs updating to C++11 (#596)

2017-08-11 Thread elextr
Geany now needs a C++11 compiler due to Scintilla 3.7.5 and therefore so does 
Geany Plugins since it uses the Geany compilation options, but Travis uses an 
old compiler so it fails.  For info see 
https://github.com/geany/geany/pull/1503.

-- 
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/596

[Github-comments] [geany/geany-plugins] fix typo (#595)

2017-08-11 Thread faraco

You can view, comment on, or merge this pull request online at:

  https://github.com/geany/geany-plugins/pull/595

-- Commit Summary --

  * fix typo

-- File Changes --

M treebrowser/README (6)

-- Patch Links --

https://github.com/geany/geany-plugins/pull/595.patch
https://github.com/geany/geany-plugins/pull/595.diff

-- 
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/pull/595


Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread Matthew Brush
Also, are you on Linux or another *nix?

-- 
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/1538#issuecomment-321950295

Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread Matthew Brush
Also, are you using multiple desktops?

-- 
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/1538#issuecomment-321950215

Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread Matthew Brush
@krizoek what version of Geany are using? Also what version of GTK+ 3, and 
which window manager are you using, as well as which distro?

-- 
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/1538#issuecomment-321950188

Re: [Github-comments] [geany/geany] Geany Locking up when typing or copying of text (#1540)

2017-08-11 Thread elextr
When somebody contributes the changes neccessary for the build to work, and 
makes Travis use it and the nightly builds and the release builds then yeah.  I 
don't know if anybody has even tried with msys 64 bit.

-- 
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/1540#issuecomment-321948971

Re: [Github-comments] [geany/geany] Win10: Mouse pointer not scaled to desktop (#1571)

2017-08-11 Thread gigadude
Yup.

-- 
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/1571#issuecomment-321946817

Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread elextr
The search dialog is non-modal to allow mixed searching/editing without 
reopening the dialog.

It would appear that XFCE may be getting confused by that, as I said it works 
on Cinnamon.

-- 
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/1538#issuecomment-321946061

Re: [Github-comments] [geany/geany-plugins] codenav: switch to header/implementation switches to wrong file (#594)

2017-08-11 Thread elextr
There is no reason that the `.h` is in the same directory as the `.c`.  There 
is a common idiom where the `.h` files are in a directory called `include`, not 
in the source directory called `src`.  Enforcing the same directory would not 
find the `.h` files in this case.

Geany does not understand the compile commands (and doesn't even know them if 
you use make or similar) so it can't check the include directories used by the 
compiler.  Heavyweight IDEs like Eclipse or Visual Studio understand the build 
commands (and constrain you to using the ones they do understand) and so can be 
more accurate.

-- 
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/594#issuecomment-321945709

Re: [Github-comments] [geany/geany] Win10: Mouse pointer not scaled to desktop (#1571)

2017-08-11 Thread Colomban Wendling
> Are the pointers in the text edit area custom?

Does the problem only happen on the main editor area, and not e.g. in the entry 
fields or the Scribble panel?

-- 
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/1571#issuecomment-321927901

Re: [Github-comments] [geany/geany] Add support for platform-specific keybindings (#1395)

2017-08-11 Thread Colomban Wendling
b4n requested changes on this pull request.



> @@ -782,6 +768,36 @@ static void load_kb(GeanyKeyGroup *group, 
> GeanyKeyBinding *kb, gpointer user_dat
 }
 
 
+static void init_platform_kb(void)
+{
+#ifdef __APPLE__
+   gchar *configfile = g_build_filename(app->datadir, 
"keybindings_osx.conf", NULL);

why loading a platform-named file instead of simply `keybindings.conf`, and 
install a different one (or none) depending on the platform? I mean, it doesn't 
make any sense to have an OSX keybinding file on Windows or GNU/Linux, nor it 
would to have a Windows one on OSX, etc.  Plus, it would make it easier to have 
specific keybindings on non-OSX in the future if wanted, without having to 
actually change the loading code.

The only "trick" would be to install an OSX-specific file on OSX, which should 
be reasonably easy to do.

-- 
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/1395#pullrequestreview-55914019

Re: [Github-comments] [geany/geany] Add support for platform-specific keybindings (#1395)

2017-08-11 Thread Jiří Techet
Well, nobody has written the OS X specific keybinding overrides yet so the 
patch won't do anything useful. Let's just wait until someone is motivated 
enough to create OS X specific keybindings and merge it then.

-- 
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/1395#issuecomment-321895808

[Github-comments] [geany/geany-plugins] codenav: switch to header/implementation switches to wrong file (#594)

2017-08-11 Thread Mike Blumenkrantz
1. create `test.c`, `test.h`, `directory/test.h`
2. open `test.c` and `directory/test.h`
3. from `test.c`, try switching to header
4. `directory/test.h` is switched to

it seems like this is using simple base filename checks and does not in any way 
check  the path, so if there is a "matching" header from anywhere else on disk 
open then this will be used even when it is obviously (looking at paths) 
unrelated

-- 
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/594

Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread krizoek zoek
dev-util/geany-plugins gtk3 automark commander gtkspell defineformat enchant 
overview
dev-util/geany gtk3

here is a list of the flags used during compilation

-- 
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/1538#issuecomment-321878306

Re: [Github-comments] [geany/geany] Feature Request: Open geany with search dialog in xfce panel (#1538)

2017-08-11 Thread krizoek zoek
yes, i had the dialog open after going into the editor. but if i click the 
tasklist after going to another software and back, i only get the search 
dialog. which i have to close in order to get back to the main editor.

i have tried some different versions/new ones of xfce. but the situation 
remains the same, ty

-- 
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/1538#issuecomment-321878012

Re: [Github-comments] [geany/geany] feature request: one click backup (#1577)

2017-08-11 Thread osmand
I enabled it, is it automatic ?

Id like a backup function for just the current file but I will investigate 
this. 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/1577#issuecomment-321873597

Re: [Github-comments] [geany/geany] Geany Locking up when typing or copying of text (#1540)

2017-08-11 Thread hdaz000700
@elextr 

Is there or will there be any advance to have a 64bit Windows version of Geany 
? 

Regards
Daz

-- 
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/1540#issuecomment-321860707

Re: [Github-comments] [geany/geany] feature request: one click backup (#1577)

2017-08-11 Thread elextr
The `save actions` plugin already does the backup save, so this is to add a 
manual activation (menu/keybinding) for that.

-- 
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/1577#issuecomment-321813622

[Github-comments] [geany/geany] feature request: one click backup (#1577)

2017-08-11 Thread osmand
just save current file under filename_date_time.xx

-- 
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/1577