on ubuntu 18.04 after added : sudo add-apt-repository ppa:geany-dev/ppa
an apt update will install 1.33 geany-plugins except for git-changebar that is broken:
```
The following packages have unmet dependencies:
geany-plugin-git-changebar : Depends: libgit2-24 (>= 0.24.0) but it is not installable
E: Unable to correct problems, you have held broken packages.
```
--
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/805
In split window "End" and "Home" buttons does not work.
Also some shortcuts, like "Ctrl-S". Please check if there are
other keys and combinations which does not work properly.
This is present in Geany from at very least 1.27.
Linux Mint 18.0 with latest patches, Geany 1.30.1 built from source.
$ ./geany -V
geany 1.30.1 (built on 2017-06-03 with GTK 2.24.30, GLib 2.48.2)
$ ./geany -v &
$ Geany-INFO: Geany 1.30.1, en_US.UTF-8
Geany-INFO: GTK 2.24.30, GLib 2.48.2
Geany-INFO: System data dir: /usr/local/share/geany
Geany-INFO: User config dir: /home/pero/.config/geany
Geany-INFO: System plugin path: /usr/local/lib/geany
Geany-INFO: Added filetype Scala (61).
Geany-INFO: Added filetype Genie (62).
Geany-INFO: Added filetype CUDA (63).
Geany-INFO: Added filetype Clojure (64).
Geany-INFO: Added filetype Graphviz (65).
Geany-INFO: Added filetype Cython (66).
Geany-INFO: Added filetype JSON (67).
Geany-INFO: Added filetype Arduino (68).
Geany-INFO: Loaded libvte from libvte.so.9
Geany-INFO: Loaded: /usr/local/lib/geany/splitwindow.so (Split Window)
Geany-INFO: Loaded: /usr/local/lib/geany/filebrowser.so (File Browser)
Geany-INFO: unknown : None (UTF-8)
Geany-INFO: Loaded /usr/local/share/geany/tags/std.py.tags (Python), 5964 symbol(s).
Geany-INFO: Plugin "/usr/local/lib/geany/filebrowser.so" already loaded.
Geany-INFO: Plugin "/usr/local/lib/geany/splitwindow.so" already loaded.
Geany-INFO: Added 6 plugin(s) in '/usr/local/lib/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-plugins/issues/577
In Geany 1.30 selecting a text with `shift`+`arrow` or `shift`+`home`/`end` leaves the last symbol under the cursor selected. For me this behavior is not apparent.
For example, pressing `shift`+`right arrow` leaves the cursor at the same position, while the symbol under the cursor gets selected. In the earlier versions (perhaps, 1.29) the same key combo selected the current symbol and moved the cursor to the next symbol.
--
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/1442
Hi) Geany is great and I love it but one thing is driving my nuts:
When I work with inline CSS in an HTML document, I switch the document's type to activate highlighting and autocompletion for CSS. If there is inline JS code then again I go to the menu and look for the JS filetype. But it takes too long to find the necessary filetype on the 3rd level of the menu among 30+ other types even when I remember where my items are located approximately.
Is there a way to make the switching process faster?
Thanks,
Alex
--
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/1415
i want to add all 16-bit and 32-bit registers, directives and keywords to filetype Assembly but dont know which file to contribute too help please
--
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/1949
If the file contains nothing, it should be closable without a "save" prompt.
Hmm. Maybe only if it NEVER contained anything: if a new file is opened, stuff gets dropped into it and then ctrl-X'd out of it, closing should not prompt for save. Noticed in Version 1.27 and also a previous version.
--
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/1710
In Perl, I define a module `M.pm` with a shared variable `$foo`:
```
package M;
our $foo = 'something';
1;
```
which I then can use, with a full path, in some other file `f.pl`:
```
use M;
print "The value is $M::foo\n";
1;
```
In the print line, Geany syntax-highlights `$M` but it is supposed to highlight `$M::foo` as that is the name of the symbol.
--
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/1679
I have a shell script, marked with `#!/bin/sh`, in which a `'` inside a comment confuses geany's syntax parser and makes it believe this comment does not end. The minimal example I can come up with is:
```
#!/bin/sh
a=$(
# '
echo 'Yo'
)
echo 'not a comment!'
```
Note, that outside of `$(...)` the use of `# '` is treated correctly.
This is with geany 1.32 (built on 2017-11-21 with GTK 2.24.31, GLib 2.54.0) on archlinux.
--
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/1754
In geany .sh file have a syntax highlighting that's not quite good, compared i.e. to other editors like sublime. In particular when you have $(...) things inside the parenthesis are all colored in orange.
Geany version: 1.31
Color combination: default
GTK version: 2.24.31
O.S.: Ubuntu 17.10
filetype: .sh
--
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/1821