[Github-comments] [geany/geany] Switch testing to github actions (#2671)

2020-11-23 Thread elextr
Github actions can do Linux (Ubuntu 16.04, 18.04 and 20.04) and windows and OSX Catalina and Big Sur so testing could check all platforms. This is a placeholder issue, not sure what is _actually_ involved, but somebody who knows might replace this with a checklist. PS IIUC github actions can ru

Re: [Github-comments] [geany/geany] Geany on Fedora 33 freezes (#2665)

2020-11-23 Thread vkireyeu
It seems like Scite is not in the Fedora repositories, so unfortunately I can't. -- 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/2665#issuecomment-732055195

Re: [Github-comments] [geany/geany-plugins] Plugin Request: Language server protocol (#1012)

2020-11-23 Thread KhazAkar
For LSP-related plugins for geany, there's some: https://github.com/notetau/geany-jedi-complete - for Python https://github.com/notetau/geany-clang-complete - for C/C++/ObjC using libclang https://github.com/notetau/geany-complete-core - core for above two https://github.com/jakeanq/gycm - YouCompl

[Github-comments] [geany/geany-plugins] GeanyCtags - ctags command is not configurable (#1037)

2020-11-23 Thread KhazAkar
on_generate_tags function inside geanyctags.c file have hard-coded commands for usage of ctags for all platforms, which limits it's flexibility. https://github.com/geany/geany-plugins/blob/bc4dc07e4deb694b647977791a23af6776db4644/geanyctags/src/geanyctags.c#L221 I'd love to fix it, but unfortunate

Re: [Github-comments] [geany/geany-plugins] Debugger: Add Support for PDB and LLDB (#886)

2020-11-23 Thread KhazAkar
Yes, that would be a great addition and would help a lot to have disassembly view :) -- 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/886#issuecomment-732331854

[Github-comments] [geany/geany-plugins] Debugger: Disassembly view for debugged C file (#1038)

2020-11-23 Thread KhazAkar
It would be a great addition to Debugger plugin to have possibility to see disassembly view of debugged program/C file :) Capstone as a disassembler is worth to look into considering this issue to be resolved IMHO: http://www.capstone-engine.org -- You are receiving this because you are subscri

[Github-comments] [geany/geany] Is it possible to set the theme from the terminal? (#2672)

2020-11-23 Thread charludo
Sorry, this isn't really an "issue", but I could not find an answer anywhere. Is it possible to set the Geany theme from command line (in linux) while geany is running? If not, is it possible between Geany restarts? (Background is that I'm trying to switch seamlessly between night and day mode,

Re: [Github-comments] [geany/geany] Is it possible to set the theme from the terminal? (#2672)

2020-11-23 Thread elextr
Depends what you mean by "theme", except for the editor all of Geany gets its theme from the GTK theme, and changes when the theme is changed on the desktop (at least here on Linux Mint 20). The "colour scheme" that controls the editor isn't controllable from the desktop, no desktop theme has

Re: [Github-comments] [geany/geany] Is it possible to set the theme from the terminal? (#2672)

2020-11-23 Thread Colomban Wendling
> So it is set by `Menu->View->Change Colour Scheme...`, which you can change > while Geany is running, but not from the command line. Well, you can't *readily*, but it's easy enough to either use a separate configuration directory (Geany's `-c` switch) or write a short `sed` command to alter t

Re: [Github-comments] [geany/geany] Is it possible to set the theme from the terminal? (#2672)

2020-11-23 Thread elextr
> Well, you can't readily, but it's easy enough to either use a separate > configuration directory (Geany's -c switch) or write a short sed command to > alter the configuration before starting. These of course need Geany stop and restart, they can't be done while Geany is running. > …Or possib