From 1ef43e001b75ecd8285abb7bf41d43c323ef0bb7 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Thu, 17 Sep 2020 00:10:20 +0200 Subject: [PATCH] Add sorter to live_grep (#61) --- lua/telescope/builtin.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/telescope/builtin.lua b/lua/telescope/builtin.lua index 606914b..f1f8739 100644 --- a/lua/telescope/builtin.lua +++ b/lua/telescope/builtin.lua @@ -125,6 +125,7 @@ builtin.live_grep = function(opts) prompt = 'Live Grep', finder = live_grepper, previewer = previewers.vimgrep.new(opts), + sorter = sorters.get_generic_fuzzy_sorter(), }):find() end