Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an auto-close curly brackets plugin for the Geany IDE?

Geany is the closest thing I can find to the perfect web development IDE. However, I can't find a way to automatically close curly brackets ({).

For example, typing:

function test()
{

..and pressing RETURN should cause this to happen:

function test()
{
    // cursor ends up here (indented by 1 tab)
}

Is there anything that can make Geany do that?

like image 663
xLite Avatar asked Oct 17 '12 00:10

xLite


1 Answers

You make something else: If you want, open https://plugins.geany.org/autoclose.html and see "autoclose" plugin. You can install with : sudo apt-get install geany-plugins-autoclose and It is all

like image 181
Ivan DImitrov Avatar answered Oct 27 '22 02:10

Ivan DImitrov