Is there a way to show HTML tags structure in the sidebar like on the following picture?
![image](https://user-images.githubusercontent.com/24701640/40561751-f94246c2-6066-11e8-9e33-a718a960804e.png)
(pic source: https://netbeans.org/kb/docs/webclient/html5-gettingstarted.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/1864
I know what you think - the last thing Geany needed...
This plugin depends on adding the "key-press" signal to Geany and won't work without it (even though it will probably compile alright). It shouldn't be merged before this functionality is in Geany.
@frlan Now it's finally pull request ready so if you have some patches or suggestions, please let me know.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/735
-- Commit Summary --
* vimode: A Vim Mode for Geany
-- File Changes --
M MAINTAINERS (7)
M Makefile.am (4)
M build/geany-plugins.nsi (1)
A build/vimode.m4 (9)
M configure.ac (1)
A vimode/AUTHORS (1)
A vimode/COPYING (340)
A vimode/ChangeLog (0)
A vimode/Makefile.am (4)
A vimode/NEWS (0)
A vimode/README (565)
A vimode/THANKS (8)
A vimode/index.txt (1657)
A vimode/src/Makefile.am (58)
A vimode/src/backends/backend-geany.c (341)
A vimode/src/backends/backend-viw.c (246)
A vimode/src/cmd-params.c (46)
A vimode/src/cmd-params.h (76)
A vimode/src/cmd-runner.c (683)
A vimode/src/cmd-runner.h (28)
A vimode/src/cmds/changemode.c (242)
A vimode/src/cmds/changemode.h (51)
A vimode/src/cmds/edit.c (449)
A vimode/src/cmds/edit.h (66)
A vimode/src/cmds/motion.c (528)
A vimode/src/cmds/motion.h (77)
A vimode/src/cmds/special.c (117)
A vimode/src/cmds/special.h (38)
A vimode/src/cmds/txtobjs.c (190)
A vimode/src/cmds/txtobjs.h (41)
A vimode/src/context.h (62)
A vimode/src/excmd-params.h (37)
A vimode/src/excmd-prompt.c (134)
A vimode/src/excmd-prompt.h (30)
A vimode/src/excmd-runner.c (458)
A vimode/src/excmd-runner.h (26)
A vimode/src/excmds/excmds.c (66)
A vimode/src/excmds/excmds.h (33)
A vimode/src/keypress.c (196)
A vimode/src/keypress.h (38)
A vimode/src/sci.c (33)
A vimode/src/sci.h (43)
A vimode/src/utils.c (221)
A vimode/src/utils.h (36)
A vimode/src/vi.c (383)
A vimode/src/vi.h (64)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/735.patchhttps://github.com/geany/geany-plugins/pull/735.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-plugins/pull/735
@TheCrowned as noted above, this is a bug in the Scintilla editing widget Geany uses, not in Geany's own code. The Scintilla bug reference is given above. Scintilla is open source code and I am sure would be happy to receive a fix for the bug.
--
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/325#issuecomment-393109995
The following occurred, not sure what I was doing to cause it. This is to record it, don't have time to do the debug just ATM.
```
*** BUG ***
In pixman_region32_init_rect: Invalid rectangle passed
Set a breakpoint on '_pixman_log_error' to debug
```
Slightly olde git build:
```
10:50:32: Geany INFO : Geany 1.33 (git >= 58aa099), en_AU.UTF-8
10:50:32: Geany INFO : GTK 3.18.9, GLib 2.48.2
```
--
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/1862
Steps to reproduce:
* copy full path to file into clipboard, for instance, `/home/nazar-pc/.gitconfig` in my case
* open Geany
* Ctrl+O to open "Open file" dialog
* Ctrl+V to insert file path
Expected result:
Dialog window switches to corresponding directory with file from clipboard selected or something very similar.
Actual behavior:
```
The folder contents could not be displayed
Operation not supported
```
Workaround:
Type `/` first, then Ctrl+V and Enter.
--
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/1865
Our custom scroll handler for horizontal (Shift+Scroll) and page (Alt+Scroll) scroll didn't properly check the scroll direction and assume that if it's not down it's up. This was mostly not a problem because the other types only were left and right scroll events, which are a lot less common.
However, it became a lot more problematic with GTK 3.4 that introduced "smooth scrolling", and thus a new scroll type that can happen for events in any direction. We then would scroll up (as we assume "not down" is up) regardless of the actual direction of the event.
It's still not clear why we'd get smooth scroll events on X11 as no code I can find asks for it and we generally don't get those, but sometimes a Scintilla widget starts receiving them, leading to the bug. On Wayland on the other hand, Scintilla asks for smooth scroll events, so we need to have a fix for it in any case.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1843
-- Commit Summary --
* Fix horizontal and page scroll on GTK3
-- File Changes --
M src/editor.c (4)
-- Patch Links --
https://github.com/geany/geany/pull/1843.patchhttps://github.com/geany/geany/pull/1843.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/1843
Is it possible to set a width of the editor tabs, when they are shown on a side? Thanks
--
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/1861
How can I set `tab_fixed_width_editor` and `tab_width_editor`? they are not present in my `geany.conf` at the moment. I use Geany 1.31.
--
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/105#issuecomment-391771475