Re: [Github-comments] [geany/geany-plugins] TreeBrowser: Avoid double node clear (#1015)

2020-10-13 Thread elextr
ping @medovina -- 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/1015#issuecomment-708140864

Re: [Github-comments] [geany/geany-plugins] TreeBrowser: Allow new file/folder in root folder (#960)

2020-10-13 Thread Chris Allan
Fixed being unable to create file from empty folder item "(Empty)". -- 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/960#issuecomment-708111634

Re: [Github-comments] [geany/geany] Removal of Recent Files and Projects from geany.conf (#1763)

2020-10-13 Thread elextr
> I did a try removing them and keep just what I did change, but the editor > will put them again. Yes, the Glib library that writes `.conf` files writes the whole file. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [Github-comments] [geany/geany] Removal of Recent Files and Projects from geany.conf (#1763)

2020-10-13 Thread Riccardo Campisano
I'm doing something like @elextr suggestion (ugly I know): `rm -rf ~/.cache/geany_config; cp -L -r ~/.config/geany/ ~/.cache/geany_config; geany -c ~/.cache/geany_config; rm -rf ~/.cache/geany_config` Maybe there are other configs statements to 'extract', like geometry, for the scope of put

Re: [Github-comments] [geany/geany-plugins] "Too many #ifdef configurations" in Debugger plugin (#1014)

2020-10-13 Thread elextr
For the ifdef IIUC cppcheck checks all possible paths through nested `#ifdefs` eg: ``` #ifdef A code 1 #else code 2 #endif ``` would have the whole file checked twice, once with code 1 and once with code 2 included, but when ifdefs are nested the number of combinations can explode and the

[Github-comments] [geany/geany-plugins] "Too many #ifdef configurations" in Debugger plugin (#1014)

2020-10-13 Thread Enrico Tröger
cppcheck 2.2 complains about many `ifdef`s in the Debugger plugin: ``` make[5]: Leaving directory '/build/geany-plugins-1.36-1+20201013git06a38f4/debugger/src' tpage.c:154:62: warning: Uninitialized variable: widgets [uninitvar]

Re: [Github-comments] [geany/geany] Show OS info in debug messages (#2498)

2020-10-13 Thread Enrico Tröger
And since @codebrainz already did the work, let's continue with #2618. -- 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/2498#issuecomment-708017985

Re: [Github-comments] [geany/geany] OS Info Improvements (#2618)

2020-10-13 Thread Enrico Tröger
Just for completeness: `OS: Arch Linux` -- 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/2618#issuecomment-708017409

Re: [Github-comments] [geany/geany] OS Info Improvements (#2618)

2020-10-13 Thread Enrico Tröger
@eht16 commented on this pull request. > +# endif +#else + /* if g_get_os_info() is not available, do it the old-fashioned way */ +# if defined(_WIN64) + os_info = g_strdup(_("Microsoft Windows (64-bit)")); +# elif defined(_WIN32) + os_info = g_strdup(_("Microsoft Windows"));

[Github-comments] [geany/geany] Update zh_CN.po (#2624)

2020-10-13 Thread 柳东原 · Dongyuan Liu
You can view, comment on, or merge this pull request online at: https://github.com/geany/geany/pull/2624 -- Commit Summary -- * Update zh_CN.po -- File Changes -- M po/zh_CN.po (33) -- Patch Links -- https://github.com/geany/geany/pull/2624.patch

Re: [Github-comments] [geany/geany] it.po for 1.37 (#2623)

2020-10-13 Thread Frank Lanitz
Merged #2623 into master. -- 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/2623#event-3869516959