Find method references in Xcode

Select the method you’re interested in, or position the text cursor within it. Open the “Related Files” menu via the icon at the top-left of the Editor. (It’s the button immediately to the left of the back button). Go to the “Callers” submenu for a list of all methods that call the selected method, and … Read more

Tips for using Vim as a Java IDE? [closed]

Some tips: Make sure you use vim (vi improved). Linux and some versions of UNIX symlink vi to vim. You can get code completion with eclim Or you can get vi functionality within Eclipse with viPlugin Syntax highlighting is great with vim Vim has good support for writing little macros like running ant/maven builds Have … Read more

PhpStorm – Advantages of Editing Deployed Files Directly vs Downloading and Syncing

If I edit files directly on the deployed server, would any PhpStorm functionality be lost? Yes. To name a few: IDE cannot index files that are not in the project and therefore cannot provide any code completion help for classes/functions/etc that defined on remote only files; True project-wide search is not possible (as it works … Read more

Using Emacs as an IDE

You’ll have to be specific as to what you mean by “the rest”. Except for the object inspector (that I”m aware of), emacs does all the above quite easily: editor (obvious) compiler – just run M-x compile and enter your compile command. From there on, you can just M-x compile and use the default. Emacs … Read more