Skip to content

Instantly share code, notes, and snippets.

@retorillo
Last active November 17, 2015 08:13
Show Gist options
  • Save retorillo/8ae572f65b2952b73215 to your computer and use it in GitHub Desktop.
Save retorillo/8ae572f65b2952b73215 to your computer and use it in GitHub Desktop.
GVim IMEのON・OFFでカーソルの色を変える

GVim IMEのON・OFFでカーソルの色を変える

.gvimrcに以下を追加するだけです。詳細は:help CursorIMでご確認いただけます。

if has('multi_byte_ime')
    highlight Cursor guifg=NONE guibg=Green
    highlight CursorIM guifg=NONE guibg=Purple
endif

利用可能な色は $VIMRUNTIME\rgb.txtにあるので、ここから色名を選ぶか、自分で追加することで他の色も設定できます。 自分は DarkTurquoiseIndianRed2 を選んで以下のようにしてみました。

if has('multi_byte_ime')
    highlight Cursor guifg=NONE guibg=DarkTurquoise
    highlight CursorIM guifg=NONE guibg=IndianRed2
endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment