Skip to content

Instantly share code, notes, and snippets.

@compnerd
Last active December 20, 2015 20:29
Show Gist options
  • Save compnerd/6191191 to your computer and use it in GitHub Desktop.
Save compnerd/6191191 to your computer and use it in GitHub Desktop.
#!/usr/bin/zsh
# Copyright © 2013 Saleem Abdulrasool <[email protected]>
# vim: set et ft=sh sts=2 sw=2 ts=8 :
function zle-keymap-select {
case ${KEYMAP} in
vicmd)
POSTDISPLAY=$'\n -- command mode --'
region_highlight=( "${#BUFFER} 32 fg=red,bold" )
;;
*)
POSTDISPLAY=
region_highlight=( )
;;
esac
}
zle -N zle-keymap-select
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment