pi314 / ime.vim

A Vim input method engine
BSD 2-Clause "Simplified" License
84 stars 3 forks source link

statusline 被 reset 的問題在 Vim 7.4.52 也發生了 #43

Closed pi314 closed 7 years ago

pi314 commented 7 years ago

以下的 snippet 可以解掉這個問題

function! IMEStatusString ()
    if exists('*ime#mode')
        return ime#mode()
    endif
    return ''
endfunction

之後再來追一下 vim 的 patch history,看看是不是 vim 的 bug,然後把結論寫在 doc & README 裡。

pi314 commented 7 years ago

看起來有點像是被 Patch 7.4.1711 修掉,那個 patch 並不是要修這個問題,但可能順便修好了。

pi314 commented 7 years ago

closed with dfd6bc6