vim的conceal

syntax match haskOperator "->" conceal cchar=→
syntax match haskOperator "<-" conceal cchar=←

highlight! link haskOperator Normal
setlocal conceallevel=2
highlight Conceal ctermbg=none ctermfg=none guibg=none guifg=none
//不想覆盖其他语法组时使用none.

每秒自动重画状态行:

function! RedrawTabline(timerID)
  silent redrawtabline
endfunction
call timer_start(1000, 'RedrawTabline', {'repeat': -1})
//耗时.
posted @ 2022-08-11 23:55  zjh6  阅读(52)  评论(0)    收藏  举报  来源