Skip to content
Discussion options

You must be logged in to vote

M-. is equivalent to ESC .. Here, in the vi editing mode, ESC (C-[) is taken by the command to "go to the normal mode (vi_nmap)". Then, by pressing M-., you essentially request to go to the normal mode and perform the command . (which repeats the previous edit).

Basically, the keybindings that contain the M- modifier are disabled in the vi editing mode by default because it conflicts with ESC. For example, you can see in §4.12 that M-. is only available in the emacs editing mode by default.

If you want to enable M-. in the vi editing mode, you can manually set up the keybinding as

# blerc
ble-bind -m vi_imap -f 'M-.' insert-last-argument

Or as explained here, you can enable all the meta b…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@dezza
Comment options

@akinomyoga
Comment options

Answer selected by dezza
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants