Tuesday, January 29, 2013

Re: Possible to stretch cursor on tab character?

ah ok I found some hoops to jump through
....
function! TabCursor()
let currentchar = getline('.')[col('.')-1]
if currentchar == ' '
if mode() == "n"
normal v
redraw
sleep 4m
normal v
endif
highlight Cursor guibg=#0FF74A
else
highlight Cursor guibg=#7F97AA
endif
endfunction

this is actually closer to what I had in mind, except ideally I would have
it blink and highlight the current tab at every blink.





--
View this message in context: http://vim.1045645.n5.nabble.com/Possible-to-stretch-cursor-on-tab-character-tp5713419p5713477.html
Sent from the Vim - General mailing list archive at Nabble.com.

--
--
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.
For more options, visit https://groups.google.com/groups/opt_out.

No comments: