Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I open 2 files with horizontal split, each windows has its own status line.

e.g. with command

vim -o a.txt b.txt

I will get status line as "a.txt" for first window, and "b.txt" for second window.

I need to invoke vim from command line, and I need to put a custom status line, and I want different status line for each window.

With

vim -o -c "set statusline=hello" a.txt b.txt

I am getting "hello" as status for both windows.

What should I do to get "hello" as status line for first window, and "world" for second window; when invoking vim from command line?

This command isn't working:

vim -o -c "set statusline=hello" a.txt -c "set statusline=world" b.txt

Please help.

share|improve this question

1 Answer

up vote 6 down vote accepted

You can use setlocal command:

vim -o a.txt b.txt -c "setl stl=hello | wincmd j | setl stl=world"

Type :help 'stl'

'statusline' 'stl'      string  (default empty)
                        global or local to window |global-local|

We can see that: stl is a global or local to window option.
So, :setl stl=hello will set a status-line which is local to current window.

share|improve this answer
Thanks, that worked. :) – divya Jul 18 '12 at 10:05

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.