Hello, I have a very simple request for Geany which I use heavily.
On my system I frequently view the output of commands the following way:
$ ls -l | nano -
here, nano reads standard input as a new unsaved file, making it easy to quickly access ls command output.
I would love to be able to do the same with geany:
$ ls -l | geany -
In other words, instead of a file, having standard input read as a new unsaved file (which would open either as new window or new tab depending on user's settings, but this is of no concern to me).
Thank you
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/780
After activating the Auto-mark plugin, Find → Find All → Mark no longer marks all matches. Deactivating the plugin restores normal behaviour.
My system is a Debian 9.5 (Stretch Stable) with XFCE. Both Geany and the Auto-mark plugin have been installed from the Debian stable repository. The output of `geany -V is`:
`geany 1.29 (built on 2016-11-16 with GTK 2.24.31, GLib 2.50.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-plugins/issues/774
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
Hi all,
I've successfully built the current master of geany and geany-plugins from source with the scope plugin. However, local variables are not updated automatically in scope. Actually, all the local variables disappear from the "Locals" tab whenever you step, step into, step out or run until cursor during the debugging process. If you right-click refresh in the tab, the local variables are correctly shown in the tab.
The test program is a simple C code which adds several numbers.
Is this a minor bug in the plugin? I currently tested on Linux Mint 18.3 Sylvia (based on Ubuntu 16-04) with a 4.10.0-38-generic 64bit kernel, and on a Ubuntu 16.04.2 LTS with a 4.4.0-75-generic 64bit kernel.
Thanks in advance!
--
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/784
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
while pressing . key it doesn't get typed. Have to press it twice and . gets typed twice like this ..
I am facing the problem in my windows 10 pro OS.
--
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/1902
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