summaryrefslogtreecommitdiff
path: root/lua/telescope
diff options
context:
space:
mode:
authorNicholas Hoffman <njhoffman1982@gmail.com>2022-07-21 01:22:51 -0500
committerGitHub <noreply@github.com>2022-07-21 08:22:51 +0200
commitbb8db6eda25399bef00074978bb13771b92e99e1 (patch)
tree246761792bf3c7b7828fbd63ed37696f2c52dc6e /lua/telescope
parent8c563017200bebd76153feb1046ecdf2db26c9d4 (diff)
fix(which_key): mode width options typo (#2078)
Diffstat (limited to 'lua/telescope')
-rw-r--r--lua/telescope/actions/init.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/actions/init.lua b/lua/telescope/actions/init.lua
index 768dc65..7e0053a 100644
--- a/lua/telescope/actions/init.lua
+++ b/lua/telescope/actions/init.lua
@@ -1103,7 +1103,7 @@ actions.which_key = function(prompt_bufnr, opts)
local displayer = entry_display.create {
separator = opts.separator,
items = {
- { width = opts.mode_with },
+ { width = opts.mode_width },
{ width = opts.keybind_width },
{ width = opts.name_width },
},