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
this link is where my modifications to give SPOJ submission capability from
geany is present. To all geany admins and developers :Can someone tell me
if i can contribute this as a feature of Geany??
https://github.com/mjnovice/geany-spoj
Le 26/12/2012 16:02, Mayank Jha a écrit :
> thanx for your prompt reply. Ive already written the modifications to
> the core-files alongwith the additional files required
> @https://github.com/mjnovice/geany-spoj Can you give a link to quick
> tutorial to transform this into a plugin. Thanx!!
I don't know of a magic way to transform changes to a plugin, but it
should be quite easy to port (by diff-ing the modified files against the
original ones and extracting the changes). For a Geany plugin guidance,
I suggest you to check out the official tutorial (and docs):
http://www.geany.org/manual/reference/howto.html
Regards,
Colomban
Le 26/12/2012 12:03, Mayank Jha a écrit :
> Hi there,
Hi,
> I am trying to add an additional feature which allows one to
> submit spoj submissions from geany with the click of a button.
> What I have done is that I created an additional page called Spoj in the
> preferences dialog, which contains the details, such as
> Userame,Password,Language etc. Everything is working fine, the problem
> lies that with every new session these details are erased and one has to
> enter those again(frustating!!) Can you tell me where all do we have to
> save these settings. Like ive gone through the tools_prefs structure
> defined in prefs.h and tried to make a copy of it to use for my spoj
> page , but unfortunately its not working... Can you help me out as to
> what am I missing??? Also how can I commit this feature into the geany
> IDE??? Thanx alot...
First, you should write a plugin rather than trying to add this to Geany
itself; such a feature is probably not used by enough people to get
accepted in Geany's core -- such things should go in plugins, so users
who wants it can enable it and user who don't just leave it alone.
Also, there is a side-project called "Geany Plugins", run by plugin
authors and coordinated by Geany dev team, that can help you with the
distribution and infrastructure. We accept any plugin in it (unless
it's bad quality, in which case we try helping to improve it), no matter
what it provides -- e.g. nobody will try to tell you "your plugin dosn't
look useful to me, go look somewhere else".
So I think it's a first important point, that might have incidence on
your first question. To answer the question more adequately though, you
need to register the prefs so they get written and read from the
configuration files, generally using `stash_group_add_*()`.
Hope this helps.
> GreetingsOFChristmas and New Year!!!!
Thanks, and happy holidays to you!
Regards,
Colomban
PS: I'm CC-ing the mailing list so we can all answer you.
New to geany, and starting with ruby, so just finding my way so far.
I cannot seem to use the mail gem:
/home/thufir/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
`require': cannot load such file -- mail (LoadError)
from
/home/thufir/.rvm/rubies/ruby-1.9.3-p327/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in
`require'
from mail.rb:3:in `<main>'
------------------
(program exited with code: 1)
Press return to continue
whereas from the CLI works fine:
thufir@dur:~/ruby$
thufir@dur:~/ruby$ ruby mail.rb
hello world
thufir@dur:~/ruby$
thufir@dur:~/ruby$ cat mail.rb
require 'yaml'
require 'net/imap'
require 'mail'
puts 'hello world'
thufir@dur:~/ruby$
what's going on?
thanks,
Thufir
Hi,
I want to creating a tags file but I have trouble of understanding the manual.
According to the manual, to create a tags file, I have to domething similar to:
geany -g [-P] <Tag File> <File list>
Now I want to create a tags file for all my *.php files recursively in
/path/to/application/root, so with a lot of other directories under
it.
In linux, I would do something like:
$> geany -g $(find . -type f -name '*.php')
*But I have no idea how to do this in windows on the command line.*
So how can I create a tags file in windows for Geany?
And when I created one, where should I put it?
Regards,
Eddy
I don't see why I would have a permissions problem:
./geany_run_script.sh: 5: ./geany_run_script.sh:
/home/thufir/.rvm/rubies/default: Permission denied
------------------
(program exited with code: 126)
Press return to continue
thufir@dur:~$
thufir@dur:~$ ll /home/thufir/.rvm/rubies/default
lrwxrwxrwx 1 thufir thufir 40 Dec 13 00:19
/home/thufir/.rvm/rubies/default ->
/home/thufir/.rvm/rubies/ruby-1.9.3-p327/
thufir@dur:~$
In the build commands I put execute to:
/home/thufir/.rvm/rubies/default "%f"
but inadvertently wiped out the compile field. I didn't see where geany
stores its config files, no ~/.geany directory, but I only changed the
build commands.
see also:
http://article.gmane.org/gmane.editors.geany.general/6781
thanks,
Thufir
Hi,
I try to compile geany on ubuntu 12.10 / 64bit intel. I have gcc 4.7.2
installed but get the following on sudo configure:
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether we are using the GNU C++ compiler... no
checking whether g++ accepts -g... no
checking dependency style of g++... none
configure: error: No C++ compiler found. Please install a C++ compiler.
What am I missing?
Thanks,
Chris
--
--------------------------------------------------------------------
Odalis: integrated KMS/CMS/DMS/Data-Warehouse and Process Management
sym.net christoph siefer
gotenring 27 50679 koeln 049.(0)221.3762590
email: siefer(a)sym.net net: http://www.sym.net