Autocompletion in Vim

In a nutshell, I’m searching for a working autocompletion feature for the Vim editor. I’ve argued before that Vim completely replaces an IDE under Linux and while that’s certainly true, it lacks one important feature: autocompletion. I know about Ctrl+N, Exuberant Ctags integration, Taglist, cppcomplete and OmniCppComplete. Alas, none of these fits my description of … Read more

Does Notepad++ show all hidden characters?

In Notepad++ I have set “replace tab with 2 spaces”. When coding in Python I copy-pasted some code from the web and it appeared indented correctly. But running the code resulted in indentation errors, which I solved in the end by removing all “visible” spaces at line beginnings and inserting the same amount of spaces … Read more

JetBrains / IntelliJ keyboard shortcut to collapse all methods

I’m working on some legacy code that has a class that is 10,000+ lines of code and has 100s of methods. Is there a shortcut for any JetBrains IDE (since the shortcut would likely be shared across all of them) to collapse all the methods / functions so that only the method signatures are shown? … Read more

Documentation for IDE’s

I’m using IntelliJ but this question could apply to PhpStorm, Visual Studio, etc… Is there a good way to make the IDE aware of the Javascript functions that WordPress provides? Are there any Javascript stubs available like these Google Maps stubs? I’d like to have auto-completion available, parameter info, etc… 1 Answer 1 One possible … Read more