vote up 2 vote down star
1

I'm currently using Vim as a lightweight IDE. I have NERDTree, bufexplorer, supertab, and ctags plugins which do almost everything I want. Only big thing missing for me is auto code formatting.

I'm working with some messy PHP code which has inconsistent indenting and code formatting, ideally I could highlight the code I want formatted (whole files would be fine too) and run a command to tidy it.

Does anybody have a nice solution for this working in Vim?

flag

2 Answers

vote up 6 vote down check

Quick way to fix PHP indentation in vim is to visually select the lines you want to work with using shift-v, and then press equals (=) to trigger auto-formatting.

As for other formatting issues you're probably looking at employing some regex search and replaces, such as ":%s/^M/\r/g" (that's ctrl-V ctrl-m, not caret-M) to fix line-endings

link|flag
1  
I can't believe I didn't know about equals auto-formatting years ago, that's really useful. For the formatting issues I could build some custom regex's, I guess I was hoping someone had already done (and tested) it. – gacrux May 13 at 13:39
Protip: ggvG= will select every line in the file and autoformat – Whaledawg May 13 at 14:06
2  
Whaledawg. you can even just gg=G and save a character. Its worth remembering you can action-motion most commands in vim – michael May 13 at 23:13
vote up -2 vote down

The vim website is not the easiest to navigate, but there is a wealth of chewy nugget center there.

For instance I found this php indenting script there. Give it a try.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.