Source File
mode.go
Belonging Package
github.com/reeflective/readline/internal/keymap
package keymap// Mode is a root keymap mode for the shell.// To each of these keymap modes is bound a keymap.type Mode string// These are the root keymaps used in the readline shell.// Their functioning is similar to how ZSH organizes keymaps.const (// Editor.Emacs = "emacs"EmacsMeta = "emacs-meta"EmacsCtrlX = "emacs-ctlx"EmacsStandard = "emacs-standard"ViInsert = "vi-insert"Vi = "vi"ViCommand = "vi-command"ViMove = "vi-move"Visual = "vi-visual"ViOpp = "vi-opp"// Completion and search.Isearch = "isearch"MenuSelect = "menu-select")
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |