mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-21 20:11:06 +00:00
fix(blink): disable blink left/right key in the cmdline
This commit is contained in:
parent
a205ef889f
commit
94c4603b68
1 changed files with 5 additions and 1 deletions
|
|
@ -85,7 +85,11 @@ return {
|
||||||
|
|
||||||
cmdline = {
|
cmdline = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
keymap = { preset = "cmdline" },
|
keymap = {
|
||||||
|
preset = "cmdline",
|
||||||
|
["<Right>"] = false,
|
||||||
|
["<Left>"] = false,
|
||||||
|
},
|
||||||
completion = {
|
completion = {
|
||||||
list = { selection = { preselect = false } },
|
list = { selection = { preselect = false } },
|
||||||
menu = {
|
menu = {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue