All good
![Screenshot_2020-11-10_03-55-13](https://user-images.githubusercontent.com/8375315/98644312-0d53a800-230f-11eb-8a39-600145022bbf.png)
Indent -module (functions now appear to be outside the module's hierarchy)
![Screenshot_2020-11-10_04-39-41](https://user-images.githubusercontent.com/8375315/98644475-455aeb00-230f-11eb-8a3d-887ffbd0c071.png)
Indent function definition (it dissapears from the symbols list)
![Screenshot_2020-11-10_04-40-09](https://user-images.githubusercontent.com/8375315/98644645-8f43d100-230f-11eb-83ff-b76dbc571857.png)
Indent everything (to the erlang parser this is just the same code)
![Screenshot_2020-11-10_04-40-26](https://user-images.githubusercontent.com/8375315/98644674-9bc82980-230f-11eb-96f1-982aca5995af.png)
--
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/2653
Autocomplete for HTML file does not work.
Geany 1.36 on Windows 8.1
--
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/2516
If a variable name ends with "type", the symbol parser recognizes a symbol which does not exist. As an example, see the following code below:
> procedure plot_labels(iy,iy2: stipint; labtype: stipint);
const
c_marker_type=1;
var
locdbg: boolean;
{actual code}
end;
Which creates two functions: plot_labels (correct) and 1 (this is incorrect). See screenshot below:
![image](https://cloud.githubusercontent.com/assets/7198614/23316826/4c7ebeee-facc-11e6-8b4c-bda16d8b7855.png)
--
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/1409
The class / method hierarchy in Ruby files is parsed incorrectly if assigning the result of an `if` / `else` block:
![geany-incorrect](https://user-images.githubusercontent.com/9417744/35111123-2c8f0a08-fc83-11e7-9e46-e273e5a86f2d.png)
After removing the assignment, all methods are grouped under the enclosing class, as expected:
![geany-correct](https://user-images.githubusercontent.com/9417744/35111140-3a54dd66-fc83-11e7-9e99-f4ff76fff1f3.png)
Tested with the very latest state of the `master` branch (as of 2018-01-18), Arch Linux up to date. Might be related to #587.
--
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/1744
clang on Windows throws -Wdll-attribute-on-declaration. It expects
dllexport to be done on the first declaration.
Make use of G_MODULE_EXPORT instead of custom solution as GTK is a
requirement.
Signed-off-by: Rosen Penev <rosenp(a)gmail.com>
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3067
-- Commit Summary --
* fix compilation with clang on Windows
-- File Changes --
M scintilla/gtk/ScintillaGTK.cxx (7)
M scintilla/include/ScintillaWidget.h (18)
M src/build.h (5)
M src/dialogs.c (2)
M src/dialogs.h (5)
M src/document.h (26)
M src/editor.c (3)
M src/editor.h (17)
M src/encodings.h (3)
M src/filetypes.h (6)
M src/geanyobject.h (2)
M src/highlighting.h (5)
M src/keybindings.h (6)
M src/main.h (4)
M src/msgwindow.h (9)
M src/navqueue.h (1)
M src/plugindata.h (6)
M src/pluginutils.h (14)
M src/project.h (2)
M src/sciwrappers.h (52)
M src/search.h (2)
M src/spawn.h (7)
M src/stash.h (21)
M src/symbols.h (1)
M src/templates.h (1)
M src/ui_utils.h (21)
M src/utils.h (27)
-- Patch Links --
https://github.com/geany/geany/pull/3067.patchhttps://github.com/geany/geany/pull/3067.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3067
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3067(a)github.com>
I'm not sure how others but I personally just HATE the huge status bar
of GTK 3. It's such a colossal waste of precious vertical space and not
making the height adjustable is a terrible design choice IMO.
Anyway, end of ranting, the GTK status bar is just a GtkBox and a label
(plus some message stack that Geany doesn't even use) so it's no problem
to replace the statusbar with these and set the height to a sane amount
of pixels.
To me, the result is MUCH better and from the themes I tried, it looks
the same like the original status bar (apart from the height of course).
There might be a problem with plugins that try to access the status bar
directly and don't use msgwin_status_add(). The only plugin that seems
to do that (correctly) is the "web helper" plugin but from the code
it appears it falls back to creating a fake status bar if it doesn't
locate the one from Geany so it won't crash.
What do you think?
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/3058
-- Commit Summary --
* Make status bar thinner by using GtkBox instead of GtkStatusBar
-- File Changes --
M data/geany.glade (18)
M src/libmain.c (2)
M src/ui_utils.c (39)
M src/ui_utils.h (3)
-- Patch Links --
https://github.com/geany/geany/pull/3058.patchhttps://github.com/geany/geany/pull/3058.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/pull/3058
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/pull/3058(a)github.com>
Geany 1.28 Release (Windows and Linux) and Geany 1.29 and I think also Geany 1.27 and before
Lines that start with ';' are syntax highlighted as comment.
Lines that start with '#' are syntax highlighted as comment.
An entry "key=value" in a line starting with ';' is shown in the symbols list.
An entry "key=value" in a line starting with '#' is not shown in the symbols list.
I attached a small test file test.ini, but I had to rename it to test.ini.txt because github refused to upload test.ini
[test.ini.txt](https://github.com/geany/geany/files/464268/test.ini.txt)
--
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/1220
Hi, in older versions of geany you used to be able to use the scroll wheel while hovering the tab bar to cycle through tabs, it seems the recent update to 1.33 vanished that feature into the void.
It was a nice feature, just making a note in case you guys want to implement/re-enable it.
--
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/1848
I'm now playing with an ARM64 build of Geany that runs natively on Apple's new M1 processors. I have a testing build in the snapshots directory and it seems to work quite well so I think it could be added to the downloads page.
I'm not sure if what I did in this pull request is enough (not tested at all) and if I haven't forgotten anything. There are a few macOS-related bugs I'd like to get fixed (or rather get user's feedback) before I put the final builds to the Downloads page so even if this pull request is considered fine, it shouldn't be merged yet.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/www.geany.org/pull/39
-- Commit Summary --
* Add arm64 macOS builds to Downloads page
* Use consistent macOS spelling
-- File Changes --
M geany/templates/home.html (2)
M latest_version/releases.py (6)
M page_content/about/geany.md (4)
M page_content/download/releases.md (4)
-- Patch Links --
https://github.com/geany/www.geany.org/pull/39.patchhttps://github.com/geany/www.geany.org/pull/39.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/www.geany.org/pull/39