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

2017-08-12 Thread elextr
@b4n Scintilla just uses [GDK 
cursors](https://github.com/geany/geany/blob/adc22a453b546b05f507fd6522ea13f3a92943c2/scintilla/gtk/PlatGTK.cxx#L1127),
 so its probably affected by GTK2's lack of hidpi support.

-- 
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-322018460

Re: [Github-comments] [geany/geany-plugins] Update travis to system with c++11 compiler (#597)

2017-08-12 Thread elextr
Ok, the Travis failure is nothing to do with this change, should be ok to merge.

@eht16  add-ons seems to fail cppcheck?

-- 
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/597#issuecomment-322018267

Re: [Github-comments] [geany/geany-plugins] Update travis to system with c++11 compiler (#597)

2017-08-12 Thread elextr
@elextr pushed 1 commit.

997383f  Update required package to version available in Trusty


-- 
You are receiving this because you are subscribed to this thread.
View it on GitHub:
https://github.com/geany/geany-plugins/pull/597/files/69a271dca7d4b5424f0f43b19c51e9a368ae26b2..997383f1d042dbc854daa783f1333b323c6434fb


[Github-comments] [geany/geany-plugins] Update travis to system with c++11 compiler (#597)

2017-08-12 Thread elextr
Test to fix Travis, do not merge unless Travis passes
You can view, comment on, or merge this pull request online at:

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

-- Commit Summary --

  * Update travis to system with c++11 compiler

-- File Changes --

M .travis.yml (2)

-- Patch Links --

https://github.com/geany/geany-plugins/pull/597.patch
https://github.com/geany/geany-plugins/pull/597.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/597


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

2017-08-12 Thread elextr
>  the point isn't that I expect the plugin to be looking for the compile-time 
> include directories,

As I said above, the compile time include directories (the -I options to the C 
compiler) are not known by Geany or the plugin, so it can't work like that.  

In fact the plugin doesn't even know about languages, it just knows an 
association between sets of extensions which can be adjusted by the user to 
support any language they want (see plugin preferences).

The rule that the current directory is searched first is a C compiler rule, it 
does not necessarily apply to any other language.  

The plugin searches the open files first, then the current directory, perhaps 
an option could be added to allow the order to be switched by the user, pull 
requests are welcome.

-- 
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-322014890

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

2017-08-12 Thread Colomban Wendling
Interesting, that suggests there's some weird thing happening with Scintilla's 
use of cursors then maybe.
@gigadude could you give us the debug info (Geany/GTK/GLib version, etc.), 
available via *Help → Debug Messages*?

Also, are all your monitors scaled the same?  If not, does the same happen if 
another monitor is the primary one, or if Geany is first started on another one?

-- 
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-321993903

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

2017-08-12 Thread Mike Blumenkrantz
Perhaps my example was too simplistic; the point isn't that I expect the plugin 
to be looking for the compile-time include directories, it's that there are 
some cases where the current behavior is 99% guaranteed to be wrong. If I am 
working on some project in a directory such as $HOME/src/project1 then an 
already-open header from $HOME/src/project2/tree/directory should not match if 
there is a header in the project1 directory which can be matched.

The point is that the plugin doesn't even check the current file's directory 
before switching to an already-open file, leading to behavior where switching 
to the header will switch to the wrong head, and then trying to switch back 
will switch to a different file than the user was originally viewing.

-- 
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-321983866

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

2017-08-12 Thread Frank Lanitz
Merged #595.

-- 
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#event-1203552473

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

2017-08-12 Thread Enrico Tröger
The output of `xfconf-query --list -c xfwm4 -v` could also be interesting. I 
suspect a specific Xfwm4 setting which is causing this bevahior.
Interesting candidates are: `/general/activate_action`, `/general/focus_hint`, 
`/general/focus_new`, `/general/prevent_focus_stealing`.

-- 
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-321961499

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

2017-08-12 Thread Enrico Tröger
The Save Actions plugin can save the current file into a backup location 
whenever the current file is saved. For details, see 
http://geany.org/manual/#save-actions.

We could add a keybinding and/or menu item to trigger the backup function. 
Though I wonder if it would bring any benefit to the automatic backup on file 
save?

-- 
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-321961204