blob: 3274decace9f2e51ab4e2bb8b8ff7bec3df2271f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# Change cursor face based on mode
hook global ModeChange .*:.*:insert %{
set-face window PrimaryCursor InsertCursor
set-face window PrimaryCursorEol InsertCursor
}
hook global ModeChange .*:insert:.* %{ try %{
unset-face window PrimaryCursor
unset-face window PrimaryCursorEol
} }
|