Wednesday, June 19, 2019

g:actual_curwin undefined

I want to use g:statusline_winid and g:actual_curwin to detect
whether the currently drawn status line is the active one.

With Vim 8.1.1517, I have tried the following code:

fun! BuildStatusLine()
return g:statusline_winid ==# g:actual_curwin
\ ? 'Active' : 'Inactive'
endf

set statusline=%!BuildStatusLine()

but I get E121: Undefined variable: g:actual_curwin.

My understanding is that the global variables should be defined
when a %! expression is evaluated. Is that correct? If so, what
am I doing wrong?

Thanks,
Life.

--
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

---
You received this message because you are subscribed to the Google Groups "vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vim_use+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vim_use/50001D96-65C8-492F-BE80-9D8AC41B385C%40icloud.com.
For more options, visit https://groups.google.com/d/optout.

No comments: