diff options
Diffstat (limited to 'lua/telescope/pickers/window.lua')
| -rw-r--r-- | lua/telescope/pickers/window.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/pickers/window.lua b/lua/telescope/pickers/window.lua index 95b89cf..945a7e3 100644 --- a/lua/telescope/pickers/window.lua +++ b/lua/telescope/pickers/window.lua @@ -7,7 +7,7 @@ function p_window.get_window_options(picker, max_columns, max_lines) local getter = require("telescope.pickers.layout_strategies")[layout_strategy] if not getter then - error("Not a valid layout strategy: " .. layout_strategy) + error(string.format("'%s' is not a valid layout strategy", layout_strategy)) end return getter(picker, max_columns, max_lines) |
