Graphical GUI script editor with overview of functions

Is there an editor for Unix shell scripts like Bash that has a feature overview like most Eclipse editors? I have a really large shell script with a lot of functions here and I want to quickly jump from one function to the next.

Or is there any other way to get such an overview?

+2


source to share


3 answers


Since I'm mainly in a Windows environment, I looked at Notepad ++ plugins and found a feature list plugin . This is basically what I am looking for. Since there is no author documentation, check out the introductory blog post .



0


source


The VIM taglist plugin also works for shell scripting. If you are a VIM user you might want to consider it ...



It offers you a list of functions in a left-split window that you can use to navigate the function definitions.

+1


source


Geany can handle this easily, perhaps worst of all in a linux virtual machine inside your windows, so you can use this and other tools when it comes in handy. But Notepad ++ is awesome. gedit also has plugins for this.

0


source







All Articles