Add an indicator to Zsh Vi Mode

Source: Internet
Author: User

Add an indicator to Zsh Vi Mode

After a long time using zsh's Vi command line editing mode, sometimes you may wonder which mode you are in. As we all know, the status line of Vim can display the instructions of the mode to indicate whether the mode is normal or insert. If we can port Vim to zsh, it will be perfect.

Man zshzle looked at the document and found that implementation is not difficult. You only need to add the following content to. zshrc:

VIMODE = '-- INSERT --'
Function zle-line-init zle-keymap-select {
VIMODE = "$ {$ {KEYMAP/vicmd/-- NORMAL --}/(main | viins)/-- INSERT --}"
Zle reset-prompt
}
Zle-N zle-line-init
Zle-N zle-keymap-select

RPROMPT = '% {$ fg [green] % }$ {VIMODE }%{ $ reset_color % }'

To explain it a bit, we first set the VIMODE variable to save the default state (insert), then use the two widgets provided by zle to replace the variable content, and redraw the prompt. Then execute zle widgets and set RPROMPT to display the indicator on the right. The result is as follows.

Zsh installation and Configuration Guide

Nine reasons for using Zsh

Zsh usage tips

Install the ultimate Shell Zsh in Linux

This article permanently updates the link address:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.