Some editors have a sort function. Some even are smart enough to sort marked text. Can that be added?
--
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/1661
@frlan This is old, do you plan on doing something about it? Is it even possible (the discussion on 011dd01 suggests it isn't).
--
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/266#issuecomment-338882567
@bchretien This is unlikely to get fixed in the current splitwindow implementation, where basically only some keybindings directly provided by Scintilla work. So the behavior is kind of accepted. If it's still an issue for please speak up, otherwise I'll close this in a week.
--
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/264#issuecomment-338882135
I replaced the delivered icons with standard named icons.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/636
-- Commit Summary --
* workbench: use standard icons
-- File Changes --
M workbench/Makefile.am (2)
D workbench/icons/16x16/Makefile.am (10)
D workbench/icons/16x16/workbench-basedir.png (0)
D workbench/icons/16x16/workbench-bookmark.png (0)
D workbench/icons/16x16/workbench-dir.png (0)
D workbench/icons/16x16/workbench-nodirs.png (0)
D workbench/icons/16x16/workbench-project-error.png (0)
D workbench/icons/16x16/workbench-project.png (0)
D workbench/icons/24x24/Makefile.am (10)
D workbench/icons/24x24/workbench-basedir.png (0)
D workbench/icons/24x24/workbench-bookmark.png (0)
D workbench/icons/24x24/workbench-dir.png (0)
D workbench/icons/24x24/workbench-nodirs.png (0)
D workbench/icons/24x24/workbench-project-error.png (0)
D workbench/icons/24x24/workbench-project.png (0)
D workbench/icons/32x32/Makefile.am (10)
D workbench/icons/32x32/workbench-basedir.png (0)
D workbench/icons/32x32/workbench-bookmark.png (0)
D workbench/icons/32x32/workbench-dir.png (0)
D workbench/icons/32x32/workbench-nodirs.png (0)
D workbench/icons/32x32/workbench-project-error.png (0)
D workbench/icons/32x32/workbench-project.png (0)
D workbench/icons/48x48/Makefile.am (10)
D workbench/icons/48x48/workbench-basedir.png (0)
D workbench/icons/48x48/workbench-bookmark.png (0)
D workbench/icons/48x48/workbench-dir.png (0)
D workbench/icons/48x48/workbench-nodirs.png (0)
D workbench/icons/48x48/workbench-project-error.png (0)
D workbench/icons/48x48/workbench-project.png (0)
D workbench/icons/Makefile.am (20)
D workbench/icons/scalable/Makefile.am (10)
D workbench/icons/scalable/workbench-basedir.svg (25)
D workbench/icons/scalable/workbench-bookmark.svg (17)
D workbench/icons/scalable/workbench-dir.svg (18)
D workbench/icons/scalable/workbench-nodirs.svg (20)
D workbench/icons/scalable/workbench-project-error.svg (17)
D workbench/icons/scalable/workbench-project.svg (19)
M workbench/src/sidebar.c (14)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/636.patchhttps://github.com/geany/geany-plugins/pull/636.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/636
Using Geany 1.30.1 on Windows 7:
In order to recognize files such as .irbrc or private_irbrc as a Ruby files when it comes to syntax highlighting, I have opened Tools/ConfigurationFiles/filetypes_configuration.conf and changed the line for the Ruby file extensions to
Ruby=*.rb;*.rhtml;*.ruby;*.gemspec;Gemfile;rakefile;Rakefile;*irbrc;.irbrc;
However, the file .irbrc is still not considered as Ruby-File, but as file of type "Conf". Looking up the definition of the "Conf" file type, I find the line
Conf=*.conf;*.ini;config;*rc;*.cfg;*.desktop;*.properties;
This doesn't make sense! The file name ".irbrc" obviously does *not* match any of the pattern in the "Conf" definition! Why is Geany picking up the wrong file type here?
--
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/1657
I do a lot of line-by-line editing in large text files using geany. This entails looking back and forth between geany and another program. I have the two set up side-by-side. When I switch the focus to the other prog, which I have to do to advance navigation there, geany stops displaying the current line highlighting. This makes it difficult to find my place visually in geany as I go back and compare.
Secondly, when it is time to go back to Geany to do the editing, clicking anywhere in the document moves the cursor there, so I lose the previous, desired cursor location.Consequently, I have to click in a dead tab bar area to avoid disrupting the cursor.
I would find it very helpful if the current line would stay highlighted even when geany does not have focus, and if there was an "eat the first click" option, so that the first click only would give focus to geany, without moving the cursor.
I'm on Linux, using the XFCE desktop. Other programs, such as Vivaldi, keep their highlighting when changing focus.
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/1528
Most importantly IMO, add a prefix (C "namespace") to functions from that lib. Let's not do the same mistake as Geany there.
2 additional things that could be nice:
1. install header files so it can be used by 3rd parties as well
2. build some developer documentation (I kind of hate Doxygen for its total lack of automated main page, but we could use that nonetheless like Geany does)
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/631
-- Commit Summary --
* Only automatically enable the utils library if a plugin uses it
* Fix building the utils library on Windows
* utils: Put public functions in the "gp" namespace
* utils: Small code style cleanup
* utils: Add C++ guards
-- File Changes --
M Makefile.am (3)
M build/utils.m4 (39)
M build/workbench.m4 (1)
M configure.ac (3)
M utils/src/Makefile.am (2)
M utils/src/filelist.c (17)
M utils/src/filelist.h (12)
M workbench/src/wb_project.c (2)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/631.patchhttps://github.com/geany/geany-plugins/pull/631.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/631
The workbench plugin now imports the "base_path" and "file_patterns" from Geany's project settings
as an workbench project directory. That directory is then treated as the project's base dir.
In the config file all settings related to the project's base dir are prefixed with "Prj-"
instead of e.g. "Dir1-". On loading of a workbench's project, the plugin checks if there
is a "base_path" in the "project" section but no "Prj-BaseDir" in the "Workbench" section.
In that case the data from the Geany project is imported. That means, the import happens only once.
On import, the project is marked as changed (a '*' is displayed after the project's name).
The project's base dir is always labeled "Base dir" and has a specific icon to show that it differ's
from the other directories. Also, it is always listed first/on top of the tree.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany-plugins/pull/634
-- Commit Summary --
* workbench: import Geany project data
-- File Changes --
M workbench/icons/16x16/Makefile.am (1)
A workbench/icons/16x16/workbench-basedir.png (0)
M workbench/icons/24x24/Makefile.am (1)
A workbench/icons/24x24/workbench-basedir.png (0)
M workbench/icons/32x32/Makefile.am (1)
A workbench/icons/32x32/workbench-basedir.png (0)
M workbench/icons/48x48/Makefile.am (1)
A workbench/icons/48x48/workbench-basedir.png (0)
M workbench/icons/scalable/Makefile.am (1)
A workbench/icons/scalable/workbench-basedir.svg (25)
M workbench/src/sidebar.c (39)
M workbench/src/wb_project.c (165)
M workbench/src/wb_project.h (2)
-- Patch Links --
https://github.com/geany/geany-plugins/pull/634.patchhttps://github.com/geany/geany-plugins/pull/634.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/634