Hi I'm on a raspberrry with the latest version of Raspian and I use Geany.
I want to know how to change the color of the menu and the toolbar in dark because it's very bright.
Thanks !
Bleety.
--
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/1935
All,
I installed geany 1.33 on the latest opensuse leap 15 beta. One thing that is a bit awkward to work with when using Geany in a VM (display res 1382x864) is the toolbar icon width which is much much wider than earlier releases causing the Search box, Jumpto Line input, Jumpto button and Quit to be pushed off toolbar adn ellipsed (or actually the down triangled). I know this (as well as icon height spacing, and height of edit-entry box, combo-box, etc.. has been a challenge with Gtk+3, but are there any tweak that can be added to condense the icons to more of a normal toolbar spacing so that all the icons fit again?
Since they all work, this isn't a bug, but it is more a feature request - if possible, to regain some of the toolbar real estate lost in the Gtk+2 -> Gtk+3 update.
--
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/1825
Geany supports Ruby but not Crystal
https://github.com/crystal-lang/crystal
The syntax is very similar to Ruby so is there any
way of adding the same syntax highlight on Ruby to Crystal in 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/1714
Couldn't find such enhancement/improvement request, so am I the only who doesn't want to perform extra clicks every time new document is created?
I mean, when new document (file) is created in Geany, mouse cursor isn't moved to text field. As as result, you must manually click empty text area every time you want to start typing. Is there some specific reason why Geany doesn't allow typing text right after creating new file?
--
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/1925
`async` and `await` are Python keywords since Python 3.5, however, they are not highlighted as such in Geany.
![geany-async](https://cloud.githubusercontent.com/assets/2401856/21525405/64e7c93a-cd1d-11e6-8763-c04751220905.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/1351
It would be useful to be able to place the message window on the left as currently Geany only allows placing it on the right or bottom of the screen. Whereas the sidebar can be placed on either side of the screen.
--
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/1719
Hello,
While trying operator overloading in Rust, I see some unexepected behaviour of Geany. For a structure called ComplexNumber, the implementation of Add and Mul require separate implementation blocks. I expected that Add and Mul would be listed together with print and magnitude. If I try operator overloading in a similar way in C++, the member functions get nicely grouped below the name of the structure, even if they are defined in separate blocks. See the picture and the attached Rust example.
![implementationsrust](https://cloud.githubusercontent.com/assets/7198614/10871318/e51a5f5a-80e3-11e5-987f-4e2fc4c16615.png)
use std::ops::{Add,Mul};
#[derive(Debug,Copy,Clone)]
pub struct ComplexNumber {
r : f64,
j : f64
}
impl Add for ComplexNumber{
type Output = ComplexNumber;
fn add(self, rhs: ComplexNumber) -> ComplexNumber {
ComplexNumber {r: self.r+rhs.r, j: self.j+rhs.j}
}
}
impl Mul for ComplexNumber{
type Output = ComplexNumber;
fn mul(self, rhs: ComplexNumber) -> ComplexNumber {
ComplexNumber {r: self.r*rhs.r-self.j*rhs.j, j: self.r*rhs.j+self.j*rhs.r}
}
}
impl ComplexNumber {
fn print(& self) {
print!("{}+{}i ",self.r,self.j);
}
fn magnitude(& self) -> f64 {
(self.r.powi(2)+self.j.powi(2)).sqrt()
}
}
fn main()
{
let a = ComplexNumber {r: 1.0, j: 0.0};
let b = ComplexNumber {r: 0.0, j: 1.0};
let c = a + b;
let d = a * b;
let e = c + d;
c.print();
d.print();
e.print();
print!("{} ", e.magnitude());
}
---
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/issues/728
I'm using Geany 1.30.1 on (German) Windows 7.
What puzzles me is, that the Geany user interface shows a mixture of English and German. The Menu (File, Edit, Search, ...) is completely in English, but the toolbar below is mostly in German, but with English interspersed (Saying "Neu", "öffnen", "Speichern", "Save All", "Zurücksetzen" (whatever this means), "Schließen", "Zurück", "Vor", "Compile", "Build", "Ausführen").
I understand that Geany uses GTK+ to present itself, and that it is a bit difficult to persuade a GTK+ Application to use a certain language. I do not understand, how I can get such a mixture of languages though.
--
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/1919