Words not sorted by frequency. Geany 1.28
--
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/1287
Fixes #336.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1181
-- Commit Summary --
* VTE: use proper accessor for the vertical adjustment
* VTE: stop using vte_terminal_set_font_from_string()
* VTE: drop support for selecting the emulated terminal
* VTE: add support for vte_terminal_spawn_sync()
* VTE: add debugging info to known which library was actually loaded
* VTE: don't hard-require vte_terminal_set_word_chars()
* VTE: Add support for 2.91 GdkRGBA API variant
* VTE: Don't hard-require vte_terminal_im_append_menuitems()
* VTE: Don't require vte_terminal_set_background_image_file()
* VTE: add VTE 2.91 DSO names
-- File Changes --
M doc/geany.txt (3)
M src/keyfile.c (3)
M src/vte.c (292)
M src/vte.h (1)
-- Patch Links --
https://github.com/geany/geany/pull/1181.patchhttps://github.com/geany/geany/pull/1181.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/1181
While editing files longer than one page, Geany manages the scroll position such that the currently edited line is always the bottom-most line. One unfortunate side effect of this is that the spell checking underlining will be hidden beneath the status bar (depending on the height of the window):
![image](https://cloud.githubusercontent.com/assets/33569/16614995/a4b66f00-4328-11e6-973f-41891bfb91d6.png)
In the screenshot above, you can barely see that "Filller" was highlighted as misspelled.
One way other editors (e.g. GitHub right here) handle this, is by leaving some space underneath the last line in the file. As a workaround, you can repeatedly scroll down in Geany, but that gets annoying while editing.
You might need to adjust the height of the Geany window to reproduce the problem.
---
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/1116