Questions tagged as ['geany']

Integrated development environment. It was developed to provide a small and fast IDE, which has only a few dependencies from other packages.
Score: 0
MianQi avatar
A tricky matter in Geany
in flag

I typed these code in Geany:

void copy_fct()
{
    int v1[10] = {0,1,2,3,4,5,6,7,8,9};
    int v2[10] = {0,0,0,0,0,0,0,0,0,0};
    // to become a copy of v1
    
    for(auto i=0; i!=10; ++i) // copy elements
        v2[i]=v1[i];
    // ...
}

while, when I compiled it, there was always a red wave line under "int v2[10]", I tried "int v2[] = {0,0,0,0,0,0,0,0,0,0};" "int v2[];" and "int v2[10] = {};", a ...

Score: 2
Open Geany Template with Shortcut
hm flag

To open the geany template file manually, we need to follow the following steps,

File -> New(with Template) -> main.c(or other programming language template)

Can I make a shortcut(possibly keybindings) to do the things automatically ? I am using ubuntu 20.04

Score: 1
Geany - how to disable mark option in find function?
gi flag

I pressed mark but now I have no idea how to disable it. And I can not google this. Just closing the window doesn't help.

enter image description here

Score: 1
is there some basic text editor like Notepad++ for Ubuntu that supports emmet/zen coding?
gi flag

I would like to use emmet/zen coding on Ubuntu but I haven't found any simple text editor that supports it preferably with easy to install way. A plugin for Geany (which is pretty similar to Notepad++) is very old and hard to install. Are there some other editors?

UPD: I've found Bluefish that is even more alike Notepad++, shortcuts and functionality are pretty close in default package.

Notepad++ as ...