Questions tagged as ['geany']
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 ...

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

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 ...