I need to study and modify a large and poorly documented code base written in pl / sql. I use Oracle SQL Developer to navigate it, but it gets tedious because there is no “go to declaration” or “find ways to use” option, so I need to go manually to the specified package to find a function or procedure that I want to understand , or grep for an offline copy to find usages.
I tried installing vim + ctags, but violent ctags get confused by case insensitivity.
So the question is, which tools make it easy to navigate through the PL / SQL code?
source
share