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.

I'd like to customize the status line in vim to show the languages the spell checker is checking for. Something like that

File: hello.txt [text][utf8][unix][en,de] CWD: ~ Line: 1/10:1

I've added this line to my .vimrc:

set statusline+=%{v:lang}

However, I get the following result which is not completely what I want

File: hello.txt [text][utf8][unix][en_US.utf8] CWD: ~ Line: 1/10:1

The major drawback is that I don't see all languages activated (en and de)

I was looking for a variable similar to v:lang. Can anyone show me the most convenient way to do it?

share|improve this question

1 Answer

up vote 6 down vote accepted

I believe that's set with the spelllang option if you're using the built in spell checker and not a plugin:

set statusline+=%{&spelllang}
share|improve this answer

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.