Questions tagged [geany]

Geany is a lightweight and fast IDE. It is using the GTK [2|3] toolkit while trying to keep only a low number of further dependencies from other packages.

Geany is a lightweight and fast IDE (integrated development environment). It was designed to have very few dependencies, and requires only the GTK 2 libraries to run.

It's based on Scintilla and is mostly written in C and C++.

428 questions
0
votes
1 answer

copy+paste >8k rows in geany and gedit with default options no longer works, is there a copy/paste limit?

I've been editing manually some files with geany and things have been so far so good. I got recently one with >11k rows (5 columns), and I needed to copy (ctrl+c) >8k rows from it and paste (ctrl+v) (ie. replace) them into another file. The…
Gery
  • 8,390
  • 3
  • 22
  • 39
0
votes
2 answers

how can i get rid of: warning: value computed is not used [-Wunused-value]

I'm a beginner in programming so I would like a simple answer :) I have a for loop with multiple conditions, which prints out two arrays. It works, but i get a warning and a red line under for(). Why is it so and how can I avoid it? I'm writing it…
Jaan
  • 3
  • 3
0
votes
1 answer

How to turn off geany message window by default?

I use geany to do simple text editing and viewing. But its message window takes half the area and is useless for me. I want to turn it off when I run geany. I know there is a command option --no-msgwin for that. But how can I tell geany not to show…
HongboZhu
  • 4,442
  • 3
  • 27
  • 33
0
votes
1 answer

Geany - undefined reference

I am trying to compile C++ code with Geany. Compile command: g++ -Wall -c "%f" Build command: g++ -Wall -o "%e" "%f" main.cpp: #include #include "Person.hpp" int main() { Person p1(16); std::cout << p1.getAge(); return…
0
votes
1 answer

How to set a background color in Geany for PHP scope different from the HTML scope?

Which is the easiest way to set a background color for PHP code in Geany 0.21 (Ubuntu 12.04) different from the background color of the HTML scope? The default background color for all the code is white. I would want to have a light gray background…
axelbrz
  • 783
  • 1
  • 7
  • 16
0
votes
1 answer

Adding a library on linux

I recently started to program my first java project on my new raspberry pi. Its going to be an automated alarm clock which plays my favourite music every morning. To implement this I wanted to use "music player daemon" and the java api "java mpd".…
xMaschx
  • 3
  • 2
0
votes
1 answer

How to save a read-only file in Geany?

When edit a read-only file by Geany, I can't save the file. Is there some plug-in support to change the file's mode then save it? Thanks!
0
votes
1 answer

C++: Undefined reference to functions

I'm using header files, my functions aren't being recognized. The exact errors I am getting are: main.cpp:(text+0x67): undefined reference to 'resetDeck()' main.cpp:(text+0x6c): undefined reference to 'deal()' main.cpp:(text+0x71): undefined…
lijrobert
  • 125
  • 2
  • 9
0
votes
1 answer

How to get calltips with numpy (ex) in the geany editor

I just build geany 1.23 under ubuntu 10.04. If I write: import numpy as np then if I write: np. After writing the dot, Ctrl+Shift+Space (nor Tab) doesn't trigger a calltip window as in ipython or with spyder. Is it the normal behaviour or is there…
Jean-Pat
  • 1,839
  • 4
  • 24
  • 41
0
votes
1 answer

geanyvc on windows

I've installed the geanyvc plugin for Geany (1.22) and GTK+ bundle in Windows 7 64bit, which provides version control functions inside Geany, however I can't use the plugin's function; the menu entries are greyed out. It seems that Geany doesn't…
0
votes
1 answer

Make / Build with geany

I have problem on build. My error is something like that: "test.c" error: test.h error" I have on source code: #include How to add this on build? To be spesific How to link this library? Can i link it through Geany? Operating System…
John
  • 31
  • 1
  • 3
  • 8
0
votes
1 answer

How to integrate OpenNI, NITE libraries in CodeBlocks or Geany

I installed the OpenNI+NITE+kinect on ubuntu 12.10 today and the samples are working fine. (Ran NITE samples and they work like charm) I want to start developing in Linux and I like to work with IDE. For ubuntu I have always used Geany or…
Bounty Collector
  • 615
  • 7
  • 19
0
votes
1 answer

Geany - hint list for classes in linked libraries

For C++, is there a functionality (or plugins that will provide this) in Geany which enables suggestion/hint list of all members of a class, also classes from a linked library? I mean like in Java, when you type dot(.) after an object instance…
tambalolo
  • 1,035
  • 3
  • 14
  • 30
0
votes
1 answer

Unhandled exception at 0x77ea15de in Assignment 3.exe: 0xC0000005: Access violation reading location 0x33772c58

I don't understand what this error is telling me. When I run the program it should continuously loop until the user enters N (for no more/exit). I don't understand what is going on. After the first set of inputs, before the user is prompted "Would…
Luca
  • 443
  • 2
  • 8
  • 17
0
votes
0 answers

C++ Compile and Build Command for Geany with TBB

I would like to know what are the C++ Compile and Build Commands for Geany with TBB using g++ compiler. I've been struggling with Geany for days and I couldn't make it work. Note: Within my C++ code I have included the necessary headers and verified…
Chicodelarose
  • 827
  • 7
  • 22