There is no feedback about a failed GIT commit at all.
No status bar message, no status window message, no message in Help->Debug Messages and no error dialog.
At least one the above should happen to tell the user that the commit did not happen.
IMO there should be a message in Help->Debug Messages at the very least but also some more visible feedback to the user like an error dialog or at least a status bar message.
The only trace you get is the GIT error output on stderr but I guess most people won't want Geany's stderr regularly :).
--
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/837
I think, when commenting Python code via `Edit` > `Format` > `Comment Line(s)`, after the `#` character would be better to add a space, [as mentioned in PEP8](https://www.python.org/dev/peps/pep-0008/#block-comments), resulting:
<code>
# commented line
</code>
instead of:
<code>
#commented line
</code>
This prevent me to manual adjust (all) the commented line(s).
--
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/1681
The first commit can be generally useful if e.g. Python is not generally found in the PATH, for selecting `python3` by default, or if the environment doesn't provide a generic `python` link but only versioned ones (like `python2` and `python3`).
The second one implements the suggestion from #2211 on top of this. I have no idea if that suggestion makes sense as I don't use Windows and don't have enough Python-on-Windows knowledge. @eht16 what do you think?
@novel-yet-trivial could you test this if you can build Geany? I didn't actually test it on Winodws so it properly working is only theoretical, although I'm quite confident.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2223
-- Commit Summary --
* Add support for selecting the default Python command
* Use the `py` launcher for Python filetype on Windows
-- File Changes --
M configure.ac (11)
M data/Makefile.am (12)
R data/filedefs/filetypes.python.in (4)
-- Patch Links --
https://github.com/geany/geany/pull/2223.patchhttps://github.com/geany/geany/pull/2223.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/pull/2223
When inside the "Einstellungen" (preferences) dialogue I click on "Hilfe" (help), no Helpwindows opens, instead I get the error message in the message pane:
14:21:42: Konnte URI "C:/Program Files (x86)/Geany/share/doc/geany/html/index.html#general-startup-preferences" nicht öffnen: Das System kann die angegebene Datei nicht finden.
I don't understand, why this error message pops up, because using Windows Explorer, I can locate the index.html under exactly this path.
My guess is that this is related to the weird Windows naming conventions, where several alias names are used for the same folder, depending on the locale of the Windows installation. So, while Windows Explorer can find the html directory when pasting the string
_C:\Program Files (x86)\Geany\share\doc\geany\html_
into the Windows explorer bar, the left side pane (which shows the directory tree) displays the top-level directory not as "Program Files (x86)", but as "Programme (x86)", so perhaps the correct path to be used should be
_C:\Programme (x86)\Geany\share\doc\geany\html_
--
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/2405
Instead of using only hard-coded and varying defaults for Linux,
MacOS and Windows, try to read the system's default command for "http"
URI schemes and use it if found.
If no usable default is available, fallback to the previous hard-coded
defaults.
Besides being more user-friendly, this should solve issues on Windows
where we always used "ShellExecute" and bypassed the configured browser
command which led to errors on URLs with anchors (see #2405).
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2444
-- Commit Summary --
* Read default browser command using GIO
-- File Changes --
M src/keyfile.c (20)
-- Patch Links --
https://github.com/geany/geany/pull/2444.patchhttps://github.com/geany/geany/pull/2444.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/pull/2444
I have a question and it kills me for a long time, how do I change the theme of gtk in window for geany ????
I've seen several forums on how to do it, but none have helped me
--
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/2379
I can reliably crash Geany 1.33 (and previous versions) by the following commands.
1. "File->Open" (or any other method) to display the open file dialog.
2. Shift+RightClick on a directory, and select "Copy as Path".
3. Wait. A crash will occur.
Note: the crash occurs sooner if you paste the copied path anywhere, for instance into the open "untitled" window, or where I first encountered the crash: open a cmd window, enter "cd /d " and paste the copied path.
The event viewer displays "Event 1000, Application Error" and the following info:
`Faulting application name: geany.exe, version: 1.33.0.0, time stamp: 0x00000000`
`Faulting module name: libgdk-win32-2.0-0.dll, version: 2.24.32.0, time stamp: 0x00000000`
`Exception code: 0xc0000005`
`Fault offset: 0x00026472`
`Faulting process id: 0x18f0`
`Faulting application start time: 0x01d44284f527cbc7`
`Faulting application path: C:\Program Files (x86)\Geany\bin\geany.exe`
`Faulting module path: C:\Program Files (x86)\Geany\bin\libgdk-win32-2.0-0.dll`
`Report Id: 056c8fd0-6756-4c2a-a813-32ce3f030269`
`Faulting package full name: `
`Faulting package-relative application ID:`
systeminfo displays the following:
`OS Name: Microsoft Windows 10 Home`
`OS Version: 10.0.17134 N/A Build 17134`
`OS Manufacturer: Microsoft Corporation`
`OS Configuration: Standalone Workstation`
`OS Build Type: Multiprocessor Free`
My WAG is that this relates to the allocation, permissions, or ownership of the paste buffer.
--
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/1942
At the moment (Geany 1.35 on Arch Linux) clicking anywhere in the fold column folds that section.
This seems like a bug (at least it's _really_ annoying) as the documentation says folding only happens if you click on the fold icon.
If it's not a bug then this behaviour should be documented and ideally be configurable.
--
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/2266