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
For a more fully translated experience the translations for the NSIS Windows installer could be included.
And then have .nsi files for people to translate the strings that are specific to Geany.
--
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/2008
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