Is there something I still need to do to make the plugin usable in the Geany editor. The plugin GeanyLaTex is not listed by my plugin manager. There is some step I don't understand. Does it install only due to some inclusion into a project?
Any help appreciated as I have no idea how to install the plugin on fatdog Linux which does NOT have the apt install command nor sudo.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1215
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1215(a)github.com>
A more appropriate highlighting for keys in YAML files. The improvement can be noticed in any color scheme, particularly in the default one, where keys would have the same color and face than the ordinary text.
You can view, comment on, or merge this pull request online at:
https://github.com/geany/geany/pull/1838
-- Commit Summary --
* Better highlighting for YAML keys
-- File Changes --
M data/filedefs/filetypes.yaml (1)
-- Patch Links --
https://github.com/geany/geany/pull/1838.patchhttps://github.com/geany/geany/pull/1838.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/1838
Can we have feature:
Hilighting all matches a selected word/part
run external application
all could be binded to a shorcut
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3307
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3307(a)github.com>
Browsing for a bug fix in the same file, I came across some discrepancies in loops over `enclose_chars`. The limit is hard coded but there is a macro (aka `AO_WORDWRAP_KB_COUNT`)
[ao_wrapwords.c.patch.zip](https://github.com/geany/geany-plugins/files/8979…
that defines the same limit. For consistency, here's a patch to fix those. Humbly.
ℼ
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-plugins/issues/1182
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/issues/1182(a)github.com>
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany-themes/issues/49
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-themes/issues/49(a)github.com>
I like to have multiple Geany instances opened on different virtual desktops. So when opening a file I like to choose in which instance to open it.
I wrote this little bash script. It also keeps the shell clean for further usage.
```bash
#!/bin/bash
instance="${1}"
shift
sock_basepath="${HOME}/.config/geany/geany_socket_$(hostname)__"
if [ "${instance}" == 'GUI' ]; then
instance_names=()
old_ifs="${IFS}"
IFS=$'\n'
for sock_path in $(ls -1 "${sock_basepath}"* 2>/dev/null); do
inst_name="${sock_path:${#sock_basepath}}"
instance_names+=("${inst_name}")
done
echo "${instance_names[@]}"
IFS="${old_ifs}"
instance_names=("${instance_names[@]}" 0)
if [ ${#instance_names[@]} -eq 2 ]; then
instance_names=("${instance_names[@]}" 0)
fi
instance="$(zenity --width=300 --entry --title 'Geany Instance Manager' '--entry-text' "${instance_names[@]}" --text 'Select a Geany instance')"
if [ $? -ne 0 ]; then
exit 1
fi
elif [ "${instance}" == '' ]; then
instance='0'
fi
geany --socket-file="${sock_basepath}${instance}" "${@}" 1>/dev/null 2>/dev/null & disown
```
Maybe someone likes to come up with something more mature.
Ideally there would be a way to open multiple Geany windows from one instance. So they share things like a common recent files history.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3351
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3351(a)github.com>
Hello,
It would be nice to be able to place the reload file & etc buttons to the middle of the page instead to the right. Sounds more natural and at the same distance for right or left-handed.
Thanks for reading.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3349
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3349(a)github.com>
Separated from #3315
Cross builds from Linux and using release tarballs results in files being installed with LF line endings. Windows likes CRLF, though, so we should convert line endings on installation if necessary, using `unix2dos` or similar.
Maybe it's not an issue afterall, recent Windows versions handle LF better AFAIK.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3350
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3350(a)github.com>
The default color scheme uses red for comments, but the underline added by the spell checker plugin is also red. It's rather hard to spot spelling errors, especially in multiline comments.
By the way, some color schemes from [geany-themes](https://github.com/geany/geany-themes) have the same problem.
--
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/3346
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany/issues/3346(a)github.com>