From bb8db6eda25399bef00074978bb13771b92e99e1 Mon Sep 17 00:00:00 2001 From: Nicholas Hoffman Date: Thu, 21 Jul 2022 01:22:51 -0500 Subject: [PATCH] fix(which_key): mode width options typo (#2078) --- lua/telescope/actions/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, },