[Github-comments] Re: [geany/geany] Geany can't find Mono's `mcs` (Discussion #3776)

2024-02-28 Thread elextr via Github-comments
The code in Geany to spawn build commands on Windows is Windows specific. It uses `CreateProcessW` which says "If the file name does not contain an extension, .exe is appended." so it is assumed as `.exe` but by Windows, not Geany. On the command line the shell probably does the checking

[Github-comments] Re: [geany/geany] Geany can't find Mono's `mcs` (Discussion #3776)

2024-02-28 Thread 3oheicrw via Github-comments
Closed #3776 as resolved. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/discussions/3776 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] Geany can't find Mono's `mcs` (Discussion #3776)

2024-02-28 Thread 3oheicrw via Github-comments
The solution is to launch the program with the shell. You still use `CreateProcessW`, but the process will be `cmd.exe`. For example: `cmd /c external_program /external_program_switch`. -- Reply to this email directly or view it on GitHub:

[Github-comments] Re: [geany/geany] Geany can't find Mono's `mcs` (Discussion #3776)

2024-02-28 Thread 3oheicrw via Github-comments
The solution is to launch `mcs` with `cmd /c`. I edited `filetypes.cs` and it worked. Thank you. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/discussions/3776#discussioncomment-8616361 You are receiving this because you are subscribed to this thread.

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 1fbbf46027c4041c03056743126d8f168a13ecbf autogen.sh -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/f0783a9294e922c6d8bb94cc83672442c857340d..1fbbf46027c4041c03056743126d8f168a13ecbf You are receiving this because you are subscribed to

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 9201a4e14e84d06a92c1ccb5f06a3840ce8d7720 Update AUTHORS -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/12dbf9ad83c93f8b205e8a475fd945be917b0f54..9201a4e14e84d06a92c1ccb5f06a3840ce8d7720 You are receiving this because you are subscribed

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 8fa6ef6758b4aae6ed02fe818920ddcfb38c621a Update README -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/9201a4e14e84d06a92c1ccb5f06a3840ce8d7720..8fa6ef6758b4aae6ed02fe818920ddcfb38c621a You are receiving this because you are subscribed

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
> It still contains build artifacts that should not be saved in the repository. Hello elextr. Thank you for the informations! I managed to make the necessary adjustments so that the devehelp plugin works in the new version of Geany. Could you verify? -- Reply to this email directly or view it

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 12dbf9ad83c93f8b205e8a475fd945be917b0f54 Update build.yml -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/1fbbf46027c4041c03056743126d8f168a13ecbf..12dbf9ad83c93f8b205e8a475fd945be917b0f54 You are receiving this because you are

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 63911434e4d958044beb334658c2fa84cd595019 delete files of the compilation -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/911a8a7221bc1a13cb078044324241b89168462b..63911434e4d958044beb334658c2fa84cd595019 You are receiving this because

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. e6bc8898ab4c6f6966dcf0b3cc42b8d4ae0202ee add autogen.sh -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/63911434e4d958044beb334658c2fa84cd595019..e6bc8898ab4c6f6966dcf0b3cc42b8d4ae0202ee You are receiving this because you are subscribed

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 3 commits. 654ea6d3c47370aecbc597187adc3c60e8048ca7 new files ae9a98eb7c0c1303f6c689e90ab1340d17167f08 up configure 911a8a7221bc1a13cb078044324241b89168462b Merge branch 'devhelpplugin' of github.com:liomarhora/geany-plugins into devhelpplugin -- View it on GitHub:

[Github-comments] Re: [geany/geany-plugins] Devhelpplugin (PR #1311)

2024-02-28 Thread @liomarhora via Github-comments
@liomarhora pushed 1 commit. 9ed025dc3b2643c2ba37b249360df9ee3be2e4e9 Update dhp-manpages.c -- View it on GitHub: https://github.com/geany/geany-plugins/pull/1311/files/2ba46883756be3eb8fd127d07e985e9724fe..9ed025dc3b2643c2ba37b249360df9ee3be2e4e9 You are receiving this because you are

[Github-comments] Re: [geany/geany] Skip `tests/test_sidebar` if GTK initialisation fails (PR #3676)

2024-02-28 Thread oreo639 via Github-comments
> Sorry, I have no experience with Void Linux ^^; You might get more exposure > by posting this as a separate issue. You could still link it to this PR and > the accompanying issue. Just to clarify, Void sets `$HOME` to `/tmp` during the build, which results in gtk evaluating `/tmp` to `~`.

[Github-comments] Re: [geany/geany] Skip `tests/test_sidebar` if GTK initialisation fails (PR #3676)

2024-02-28 Thread elextr via Github-comments
@oreo639 this is a pull request that fixes an issue with a single test, it is not an issue, please do not hijack it. As suggested above please raise a separate issue -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/3676#issuecomment-1970185417 You are

[Github-comments] Re: [geany/geany] Skip `tests/test_sidebar` if GTK initialisation fails (PR #3676)

2024-02-28 Thread oreo639 via Github-comments
I'm explaining that it isn't an issue, sorry. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/3676#issuecomment-1970186777 You are receiving this because you are subscribed to this thread. Message ID: