Re: [Github-comments] [geany/geany] Message Window colors aren't contrasting in dark themes (#2644)

2020-11-09 Thread carlos157oliveira
> I guess that still has the problem that we have no idea what GTK+ theme the > user will choose, so it's not really possible to pick properly contrasting > colours. Its true, but we can pick bright colours instead of the dark ones currently implemented. Its very likely that it will give a

Re: [Github-comments] [geany/geany] Message Window colors aren't contrasting in dark themes (#2644)

2020-11-09 Thread Matthew Brush
> My solution would be to add comments to the CSS file so that the users of > dark themes only have to uncomment to have a functional contrast. I guess that still has the problem that we have no idea what GTK+ theme the user will choose, so it's not really possible to pick properly contrasting

Re: [Github-comments] [geany/geany] Can not open files from unicode-named folders under Windows (#2652)

2020-11-09 Thread Matthew Brush
Sounds related to #1095. -- 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/2652#issuecomment-724370158

Re: [Github-comments] [geany/geany] Update Scintilla to version 4.4.5 (#2600)

2020-11-09 Thread elextr
@b4n now 1.37 is out, whats your thoughts on this? -- 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/2600#issuecomment-724332427

Re: [Github-comments] [geany/geany] highlighter fails to recognize some valid Erlang expressions (#2651)

2020-11-09 Thread elextr
Maybe, and actually it looks like there are other problems, eg IIUC `->` is a token so why only the `>` is highlighted I'm not sure. Definitely should be checked with latest Scintilla and fixes posted there. -- You are receiving this because you are subscribed to this thread. Reply to this

Re: [Github-comments] [geany/geany] highlighter fails to recognize some valid Erlang expressions (#2651)

2020-11-09 Thread Colomban Wendling
while @elextr is right, it looks like Scintilla should juts be considering `:` as a separator :) Are there cases where it shouldn't? If so, then it becomes semantic and tricky. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on

Re: [Github-comments] [geany/geany] highlighter fails to recognize some valid Erlang expressions (#2651)

2020-11-09 Thread elextr
Highlighting is purely syntactic, anything to be highlighted must be able to be determined purely from syntax, no semantics allowed. Whilst I don't know Erlang, from your descriptions the examples look like they would require semantic knowledge, eg what a "list" is vs purely a '[' and ']',

Re: [Github-comments] [geany/geany] Message Window colors aren't contrasting in dark themes (#2644)

2020-11-09 Thread carlos157oliveira
I thought of something. I guess people in this community are really geek and like to tweak a CSS file. But I believe most users of dark themes don't really want to think of colours to customize _geany.css_ so the contrast between the letters and background is reasonable. My solution would be to

Re: [Github-comments] [geany/geany] items redundantly prefixed with the current filename in symbols panel (#2650)

2020-11-09 Thread Colomban Wendling
This also happens with 1.36. The reason seems that modules are not shown in the symbols tree, and then the hierarchy is displayed directly in the tag name. Could you try the patch below and see if it's better for you? ```diff diff --git a/src/symbols.c b/src/symbols.c index a54b6ef4c..a6192f04b

[Github-comments] [geany/geany] Can not open files from unicode-named folders under Windows (#2652)

2020-11-09 Thread WhatWhereWhyler
1) Create a path with unicode characters (cyrillic, for example) under Windows, and a some file (with a some content! For example, "ABCDE"): C:\dev\слово\src\file.py 2) Open console and go to the C:\dev\слово\src\ folder. 3) Launch Geany from command line with the file name as the parameter:

[Github-comments] [geany/geany] highlighter fails to recognize some valid Erlang expressions (#2651)

2020-11-09 Thread fbrau
Image attached with badly highlighted 'TRY' expressions ![Screenshot_2020-11-09_10-19-31](https://user-images.githubusercontent.com/8375315/98545997-109a5580-2275-11eb-88a1-f5e34030498b.png) Another case

[Github-comments] [geany/geany] items redundantly prefixed by the current filename in symbols panel (#2650)

2020-11-09 Thread fbrau
This happens with erlang files, just erlang files Im on 1.37. If im not wrong, this didnt happened on 1.36... It looks (erlang file): ![Screenshot_2020-11-09_09-55-08](https://user-images.githubusercontent.com/8375315/98543800-c2378780-2271-11eb-9407-01aa93edb541.png) It should look (python

Re: [Github-comments] [geany/geany] Slow startup (#2649)

2020-11-09 Thread Colomban Wendling
Maybe one reproducing the issue could bisect if it happened since 1.36? Not sure how easy bisecting is on Windows/Macos (probably depends on how easy it is to build), but that could possibly be a cheap-ish way of figuring this out. I'm exclusively on Linux, and my startup times always have

Re: [Github-comments] [geany/geany-plugins] Problem with "Lua Script" after upgrade (GTK 3) (#690)

2020-11-09 Thread Skif-off
I think `message-dialog-restore-traditional-look-on-unity.patch` creates a problem, because only this patch contains the words `GtkMessageDialog`, `GtkWidget`, `icon` and `image`. (By the way this bug exists in `geany.input()`'s window too.) @b4n, will you add your patch to upstream? -- You