Hello everybody,
I've been happily using Geany for a little while now, coding mostly in
Python. I have a couple questions:
1. For a dark color scheme, eg Vibrant Ink, how do i get the active
line to not be highlighted. White text + white highlighting =
invisible text on the line I'm trying to edit. Arrgh!
2. Any debugger advice for python? I am finding winpdb is pretty slow
and actually crashes on my machine a fair amount.
I'm on a windows 7 64 bit installation.
Thanks!
--
A musician must make music, an artist must paint, a poet must write,
if he is to be ultimately at peace with himself.
- Abraham Maslow
Hello Geany users,
I have just installed Geany on Ubuntu and when I open the preferences I
have tab General, Interface, ..., Various but after Various* I do not have
the Terminal tab (see image below)*, which is what I wanted to access to
paste and copy commands to the terminal to execute small pieces of code.
Have I made a mistake in installing geany (i used on the command line: sudo
apt-get install geany)
Thank you very much for help.
Best regards,
marco
[image: Inline image 1]
Hello World,
Does geany support syntax highlighting for GLSL? If yes, what extensions
are used for them? If no, how do I add C syntax highlighting for their
extensions?
TIA and best regards
Andreas
--
("`-''-/").___..--''"`-._
`o_ o ) `-. ( ).`-.__.`)
(_Y_.)' ._ ) `._ `. ``-..-'
_..`--'_..-_/ /--'_.' .'
(il).-'' (li).' ((!.-'
Andreas Tscharner andy(a)vis.ethz.ch ICQ-No. 14356454
Hello!
Let me introduce you new plugin - define auto-format for C/C++ users.
This plugin automatically helps you to edit big multi-line defines just
you are typing. It provides two features:
- automatically align backslashes
- continue backslashes inside multi-line define when you press Enter
now instead
#define SUM(a, b, c) do {\
c = (a)+(b)\
} while(0)
you will get
#define SUM(a, b, c) do { \
c = (a)+(b) \
} while(0)
Enjoy!
https://github.com/geany/geany-plugins/pull/111
--
Pavel
Hi!
I'm new in this list, I hope to be able to contribute with some of my
skills about Geany.
It is my editor for long time and I can't change to a different one.
Please, can any body help me about a filetypes.Povray.conf?
I am doing a lot of work with Povray and it will be very nice to have
syntax highlighting with *.pov files.
References:
Intel i7
Geany compiled, version: 1.23.1
I have made all homework about filetypes, I hope!
I have this files:
/home/user/.geany/filetype_extensions.conf
Added:
Povray=*.pov;
/home/user/.geany/filetypes.Povray.conf
Copied from filetype.c and edited some details...
[keywords]
primary=....... many povray words in one line......
[lexer_properties]
lexer_filetype=C
[settings]
extension=pov
comment_single=//
comment_open=/*
comment_close=*/
After many try out, no success at all, no way to get some color in my
.pov files.
Thanks in advanced.
NB: Excuse my english :-)
--
Jose Angel Navarro Cortes
email: janc(a)janc.es
web: http://janc.es/
Usuario Linux: #49178
I have started doing some modest web development and have found the
Color Chooser to be very useful for picking colors for various style
properties. This is a great feature, but I have a suggestion to improve
it: Add an "Apply" button to the Color Chooser dialog. Currently it has
only "Cancel" and "OK." The effect would be the same as "OK" except that
the dialog would remain open, just like with the Edit->Properties dialog.
Setting colors can be a very iterative process and this would allow one
to tweak a color and observe the result in context without having to
re-open the dialog each time.
Many thanks,
Bob Snyder
I have modified compiler to output file and line, and Geany was able to highlight the line with default regex. Thanks!
Sent from my Nokia Lumia 920
-----Original Message-----
From: "Lex Trotman" <elextr(a)gmail.com>
Sent: 7.8.2013 13:54
To: "Geany general discussion list" <users(a)lists.geany.org>
Subject: Re: [Geany-Users] 'Error regular expression' feature?
On 7 August 2013 20:23, Vitali Samurov <vitali.s(a)elisanet.fi> wrote:
Hello,
oh. So, the compiler output should look like e.g. GCC outputs, which Geany does parse well?
Well, certainly gcc outputs have been used most :)
It would be the best course to use that if your compiler can be configured to produce it. If it is a very good copy of gcc it may work with the built-in decoding and no regex will be needed.
But for example the regex can be used with Python output like
SyntaxError: ('invalid syntax', ('untitled.py', 28, 5, '\tfor:\n'))
can also be parsed because it has the filename untitled.py and line number 28 in the output.
The requirement for each line to have both is because compilers like C or C++ can interleave error messages from included headers with errors from the .c file so each line must be fully identified to allow marking in the source file.
Cheers
Lex
mkl2mkp_en-0.25.c:3211:11: error: 'comp_adres' undeclared (first use in this function)
Br,
Vitali
Lex Trotman [elextr(a)gmail.com] kirjoitti:
On 7 August 2013 18:38, Vitali Samurov <vitali.s(a)elisanet.fi> wrote:
> Hello,
>
> I'm trying to add a new compiler toolchain in Geany and would like to
> highlight an error (waring) line in the code by using 'Error regular
> expression' feature.
>
> I have added this:
> (.+)\line\s+([0-9]+)
>
> And was able to get line 'E011 The value of symbolic....' colored in RED:
>
> /mkl2mkp_en -i "DIYGeigerCounter_ver_1-3.mkl" (in directory: /../Temp)
> MKP file DIYGeigerCounter_ver_1-3.mkl
> E011 The value of symbolic reference is not defined in line 77 - RECEIVE1
> First page: 0
> Length (pages): 6
> Compilation failed.
>
>
> But editor does not show /highlight the line in edit window. Is it
> possible to do that?
>
Yes, but the regular expression has to have two captures, one that extracts
the line number and one that extracts the filename so it knows which file
and which line. And the filename and line no must be in the same line in
your compiler output. That does not appear to be the case in the output
above (but it may simply be wrapped by the mailer).
Cheers
Lex
>
> Br,
> Vitali
>
>
>
>
> --
>
> --- Sent from the web-mail ---
>
>
>
> ______________________________**_________________
> Users mailing list
> Users(a)lists.geany.org
> https://lists.geany.org/cgi-**bin/mailman/listinfo/users<https://lists.geany.org/cgi-bin/mailman/listinfo/users>
>
_______________________________________________
Users mailing list
Users(a)lists.geany.org
https://lists.geany.org/cgi-bin/mailman/listinfo/users
--
--- Sent from the web-mail ---
_______________________________________________
Users mailing list
Users(a)lists.geany.org
https://lists.geany.org/cgi-bin/mailman/listinfo/users
Hello,
oh. So, the compiler output should look like e.g. GCC outputs, which Geany does parse well?
mkl2mkp_en-0.25.c:3211:11: error: 'comp_adres' undeclared (first use in this function)
Br,
Vitali
Lex Trotman [elextr(a)gmail.com] kirjoitti:
> On 7 August 2013 18:38, Vitali Samurov <vitali.s(a)elisanet.fi> wrote:
>
> > Hello,
> >
> > I'm trying to add a new compiler toolchain in Geany and would like to
> > highlight an error (waring) line in the code by using 'Error regular
> > expression' feature.
> >
> > I have added this:
> > (.+)\line\s+([0-9]+)
> >
> > And was able to get line 'E011 The value of symbolic....' colored in RED:
> >
> > /mkl2mkp_en -i "DIYGeigerCounter_ver_1-3.mkl" (in directory: /../Temp)
> > MKP file DIYGeigerCounter_ver_1-3.mkl
> > E011 The value of symbolic reference is not defined in line 77 - RECEIVE1
> > First page: 0
> > Length (pages): 6
> > Compilation failed.
> >
> >
> > But editor does not show /highlight the line in edit window. Is it
> > possible to do that?
> >
>
> Yes, but the regular expression has to have two captures, one that extracts
> the line number and one that extracts the filename so it knows which file
> and which line. And the filename and line no must be in the same line in
> your compiler output. That does not appear to be the case in the output
> above (but it may simply be wrapped by the mailer).
>
>
> Cheers
> Lex
>
>
> >
> > Br,
> > Vitali
> >
> >
> >
> >
> > --
> >
> > --- Sent from the web-mail ---
> >
> >
> >
> > ______________________________**_________________
> > Users mailing list
> > Users(a)lists.geany.org
> > https://lists.geany.org/cgi-**bin/mailman/listinfo/users<https://lists.geany.org/cgi-bin/mailman/listinfo/users>
> >
>
> _______________________________________________
> Users mailing list
> Users(a)lists.geany.org
> https://lists.geany.org/cgi-bin/mailman/listinfo/users
>
--
--- Sent from the web-mail ---