stmllr.net

vi(m) rulez!

by on stmllr.net

I don't like those bloatware IDEs like Eclipse etc. It's just too oversized for most of my projects. My favorite tool for writing code is vim (Vi iMproved). And it comes with so many neat features, like code completion, for example.

I just stumbled upon some ways to use code completion for writing PHP code:

When in Insert mode, type the beginning of a PHP function, for example

array_s

Then hit <Control-X> <Control-O> and vim will show you all possible functions in a drop down menu. Just choose the one you were looking for and hit enter

array_search( 
array_search( f
array_shift( f
array_slice( f
array_splice( f
array_sum( f

Find out more about vim secrets: http://www.vim.org/tips/tip.php?tip_id=305

Tags

Comments

  1. Steffen

    Obviously, this only works in vim >=7.x

  2. SW

    Wow, this is great. I've been using Vim for over 8 years now, and Vim7 since it was released - how did I miss this incredibly useful feature? Thanks a lot!