Hi Geany Developers,
When I am editing a plain text file, and I click on the color chooser tool, pick a color and click "Apply", or "Select", I end up seeing a hex colour code, like "#800080" being pasted into my text file! The color of new added content does not change.
What's worse is that, if any text is highlighted, it gets REPLACED by this color code text!
I went all over the manual, searching for the purpose of the Color Chooser and I could not find any description of what this feature does. All I see is the vague description "Open a color chooser dialog, to interactively pick colors from a palette".
Perhaps this feature should be renamed to something like "Hex Color Code Finder" in order to remove any suggestion that this feature somehow has an impact on the color of the displayed text in file being edited.
--
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/2204
there is no debugger plugin
--
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/758
The main idea is to save the session file list more often to prevent
accidental lost but saving the rest of the configuration might help
as well.
To prevent too many save attempts, an idle function is used and it's
only added once until it was executed.
This might help #1826, #1426 and replaces #1860.
IIRC at the very beginning I was a bit concerned about IO access and performance when writing the settings too often. At least performance doesn't seem to be a problem: `configuration_save` takes about 1-2 milliseconds on my system and IO access happens in the document-related actions in any way.
Even though I tested the code, I would like to use it "in production" for some time to get sure there are no unseen side effects or similar.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2114
-- Commit Summary --
* Save main and project configuration whenever documents are opened/closed
-- File Changes --
M src/keyfile.c (38)
-- Patch Links --
https://github.com/geany/geany/pull/2114.patchhttps://github.com/geany/geany/pull/2114.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/2114
![screenshot1](https://user-images.githubusercontent.com/30739239/39947903-22a65f44-5563-11e8-9121-bd9f7790e3bc.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-plugins/issues/744
Hi.
I often use the feature to remove pairing braces using shift + backspace given by autoclose. This works for brackets and parenthesis as well.
I miss the same feature regarding quotes, both for simple or doble quotes.
--
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/687
Note that I don't use geany much anymore so can't comment on the veracity of these changes.
Here are the notes from Wolfgang regarding the two bugs this fixes.
I made 2 changes to your geany-plugin Shiftcolumn, see the code attached.
-fixed a bug when one selects text from right to left and then shifts it
(see comment "in case selection_start was after selection_end" in my code)
-When no text is selected, now the current word is exchanged with the
next/previous, which I find quite useful.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/317
-- Commit Summary --
* Changes from Wolfgang Schwarz <wschwarz(a)online.de>
-- File Changes --
M shiftcolumn/src/shiftcolumn.c (164)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/317.patchhttps://github.com/geany/geany-plugins/pull/317.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/pull/317
This PR adds the functions ```project_close()``` and ```project_load_file()``` to the plugin API, increasing the API version to 240.
I need the functions accessible for the Workbench plugin to enable the user to activate/select a project. On such a selection event the Workbench plugin will first call ```project_close()``` and then ```project_load_file()``` to change the active/opened project.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/2234
-- Commit Summary --
* Plugin-API: added 'project_close()' and 'project_load_file()'
-- File Changes --
M src/plugindata.h (2)
M src/project.c (13)
M src/project.h (8)
-- Patch Links --
https://github.com/geany/geany/pull/2234.patchhttps://github.com/geany/geany/pull/2234.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/2234
platform: windows 7 x64
geany version: 1.27
issue: every time I delete(from end of string and backspace) the keyword "font" in a html document, geany will crash.
add:
1. the keyword "image" in a html document has same issue.
2. keyword as a tag name
---
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/432
When I press shift+right arrow (word right) in Geany (built on or after 2016-04-17) with the attached text
![crashgeany](https://user-images.githubusercontent.com/7548378/41547429-0aa6abce-7318-11e8-9e7c-d2340e924791.png) about to be saved to an html file I get:
(geany:15788): Geany-CRITICAL **: sci_get_contents_range: assertion 'start < end' failed
--
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/1882
I am used to green font; light red colouring, middle-gold colour
for modules/classes and greyish for comments. Is there a way to
easily define this for .rb files but also some other files? Or
does it require some ctag-manipulation or anything complicated?
I will probably adjust to the geany-defaults, because geany is
(objectively) a better editor at this point for me, but I'd love
to see some kind of resemblance to the colours I used to use
for many years.
Thanks!
PS: If this is a feature request, I am not sure if it can be changed
easily, but for comparison, the nano editor uses a fairly simple
format for modifying your .rc files.
For example:
color white "^ *(set|unset).*$"
color cyan "^ *(set|unset) (autoindent|backup|const|cut|fill|keypad|multibuffer|noconvert|nofollow|nohelp|nowrap|operatingdir|preserve|q
I am not necessarily suggesting the same for geany, also because it
is quite an ugly format - but the good thing is that it is a simple
text format. I could even autogenerate these files but not sure if
this is possible for geany; last time I read up about this it looked a
bit complex to get support via different colours. Or perhaps there
may be some option where this could be changed on an ad-hoc
basis ... haven't found this yet though.
Geany is pretty good as-is though. The issues I have in general are
really really minor, compared to the net-benefits of using geany so
far.
--
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/2143