I edit large text files in geany, and the wall of text is tiring on the eyes. A bit of white space would help tremendously. I've come across the Scintilla command, sci_setextradescent, but have no idea how to implement it. I wonder if there's an easy way to achieve this.
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/1592
Markdown freezes geany for about 10s on my Win10 system when starting up. I've verified that disabling/enabling markdown is what's causing the delay.
--
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/519
I would like to see the Multipaste option for Scintilla implemented I hacked together something that works, but someone just needs to add a new option in Preferences somewhere to set it
add to sciwrappersc:
void sci_set_multi_paste(ScintillaObject *sci, gboolean mpval) { SSM(sci, SCI_SETMULTIPASTE, SC_MULTIPASTE_EACH, 0); }
add to sciwrappersh:
void sci_set_multi_paste (ScintillaObject *sci, gboolean mpval);
What works for now, but requires that you modify something in Preferences at least once in the session to get it to fire is adding, the following to editorc:
sci_set_multi_paste(editor->sci, 1);
To test it out turn on the setting, change a keybinding in Preferences
Then copy some text to the clipboard, select multilines (Alt+Shift Up/DownArrow) and paste!
Now you should see all pasted text onto each line in the editor
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/850
I followed the instructions on the homepage exactly, but my colorscheme hasn't changed when I restart Geany. Are there missing instructions?
"Extract the tarball and copy all of the files in the colorschemes directory to your C:\Users\YourUserName\AppData\Roaming\geany\colorschemes directory. Create this directory if it doesn't already exist."
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-themes/issues/6
Hello,
I Use french font caracteres, my WM locale is defined like fr_FR.utf8.
When selecting characters on "none" encoded document or ISO8859-1
the accented characters counts for two byte instead of on.
exemple: create a document type "é" caracter
and select it
![screenshot_20170904_105345](https://user-images.githubusercontent.com/12949168/30019317-66f45b6e-9160-11e7-9693-62f2fc837325.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/1599
Hi,
I will be really nice to have the feature "go to column" to be able to easily go to a specific column (say 1500) for text files with long lines (usually data exchange files)
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/869
the geany sidebar are arrange by tabas.. but cannot be reordened and
if there more thant 3 tabs the vision are limited of thems due labels of each are too large
and if the sidebar are in vertical/horizontal there a waste of space
my suggestion its to optionally only show 3 firts letters or icon only like does with normal tool bar
i'm particular want to know how to only load 3 firts letters to cheap the space in small screen
![geanywastedspace](https://user-images.githubusercontent.com/1571724/33734675-92686202-db63-11e7-97e6-1f6209548df8.gif)
![geanywastedspacetabs](https://user-images.githubusercontent.com/1571724/33734676-928e706e-db63-11e7-94f6-48a95ce95d13.gif)
--
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/1711