Hi,
Scintilla uses LexLisp.cxx for Lisp and Scheme, but Geany uses Lisp only. I use GIMP and Script-Fu and I would like to see the syntax :)
If it possible, [geany-master-scheme.zip](http://www118.zippyshare.com/v/VoUXDqTp/file.html) (new/modif. files):
```
data/filedefs/filetypes.scheme
data/filetype_extensions.conf
data/Makefile.am
src/filetypes.c
src/filetypes.h
src/highlighting.c
src/highlightingmappings.h
```
Regards,
---
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/982
The markdown preview plugin is not included when geany-plugins is installed from Linux Mint software manager.
I have tried to install by cloning and following directions in readme
`ruin@ruin-notebook:~/Desktop/geany-plugins$ ./configure --enable-markdown
configure: error: cannot find install-sh, install.sh, or shtool in "." "./.." "./../.."
`
Thank you for helping me figure out what I am doing wrong
--
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/792
I'm running geany 1.32 on UbuntuMate64 18.04.1.
There is a 128GB EXT4 USB stick mounted. Its user directory contains a bash script and a subdirectory to hold backups.The script's action is to backup some of what's on my HD home directory into that subdirectory. The actual backups are done with a mixture of cp and rsync commands. The "from" specifications are mostly directory names that get processed recursively and contain up to 8GB of nested data and subdirs. Rsync calls may filter with --exclude.
When the freezes occur, I've begun editing something in the stick's user directory. Then I start running the script in mate-terminal. Next I go back to geany and try to save it with either ctl-s or the menu. Nothing happens for a substantial length of time - then eventually the operation completes.
I looked at the process table during one of these freezes. The geany process status was shown as noninterruptible. That accounts for the observed behaviour, but why should geany go noninterruptible?
--
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/1982
Fixes #1069 by implementing the suggestions there.
See commit messages for details. tl;dr: the goto-symbols popup will show more of the paths, but as little as possible. The common prefix is stripped and the longest common sub-path is ellipsized.
Example: Assume the popup would show utils.h twice (/home/kugel/geany.git/src/utils.h and /home/kugel/geany.git/build/dest/include/geany/utils.h.
The popup would show:
src/utils.h
build/dest/include/geany/utils.h
Additionally, as per @elextr suggestion and for a frequent use-case of mine, the ellipsis is introduced for long common substrings, which I often have due to having the same code base checked out multiple times (my workflow at work requires this).
So, /home/kugel/checkout_a/path/to/project/src/main.c and /home/kugel/checkout_b/path/to/project/src/main.c shows as:
checkout_a/.../main.c
checkout_b/.../main.c
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1445
-- Commit Summary --
* utils: add functions to process file name list
* symbols: provide a bit more path information in the goto-symbol popup.
* gtkdoc: add support for array annotions
* api: export new utils_strv_shorten_file_list() function
-- File Changes --
M doc/Doxyfile.in (2)
M scripts/gen-api-gtkdoc.py (7)
M src/plugindata.h (2)
M src/symbols.c (13)
M src/utils.c (193)
M src/utils.h (2)
-- Patch Links --
https://github.com/geany/geany/pull/1445.patchhttps://github.com/geany/geany/pull/1445.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/1445
At the moment if symbols of the same name are defined in identically named files, it's hard to distinguish which file is which because there's no path in the popup.
The popup should show part of the path until a directory where the paths differ so it's possible to distinguish the different files. At the same time there should probably be some top limit for the length of the paths as they can make the popup too wide.
---
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/1069
See the attached screenshot. I've turned off all other Geany plugins and tested it on a simple tag without any attributes but it still does not work. Geany version is 1.33 (GTK3 build on Arch Linux).
![geany_pair_tag_highlighter](https://user-images.githubusercontent.com/421991/47723682-b6199800-dc5d-11e8-9c04-1927915ec1f3.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/788
Gnome desktop team has changed their guidelines for their icon theme (https://developer.gnome.org/hig/stable/icons-and-artwork.html.en). They are flatter, simpler and need only two styles full color and symbolic. I thought it could be an occasion to refresh Geany icon and conforming with these new HIG. Here are my proposals, is it a good idea? What do you think of it? Tell me what I can improve :)
Full-color : ![geany_icon](https://user-images.githubusercontent.com/9469099/48549281-a04bda00-e8cf-11e8-9f44-e9422fad7314.png)
Symbolic : ![geany_symbolic](https://user-images.githubusercontent.com/9469099/48549283-a04bda00-e8cf-11e8-9b80-e97ccb525f63.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/1993