Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a code like this:

func "abc","def"
func "a little long",     {a: "string"}
func "hello", ["a", "b", "c"]

And I want this to align as:

func           "abc", "def"
func "a little long", {a: "string"}
func         "hello", ["a", "b", "c"]

I've been trying variations of :Tabularize /",\zs/, appending r0, r1, etc, but I don't have any idea of what I'm doing.

Any ideas?

If this can be done via some clean vimscript/macros, that would also be fine.

share|improve this question

1 Answer

up vote 2 down vote accepted
func |          "abc", |"def"
func |"a little long", |{a: "string"}
func |        "hello", |["a", "b", "c"]

We want to select only the first "foo", of each line.

:Tab /^func \zs"[^"]*",/l1r1
share|improve this answer
Amazing! You've saved me so much time :) – user1527166 Nov 29 '12 at 8:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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