summaryrefslogtreecommitdiff
path: root/lua/telescope/finders.lua
diff options
context:
space:
mode:
authorTJ DeVries <devries.timothyj@gmail.com>2020-09-03 11:18:08 -0400
committerTJ DeVries <devries.timothyj@gmail.com>2020-09-03 11:18:08 -0400
commitb04ec331c48a1668b0df21f24e9870acccec5e64 (patch)
tree081aa2548142bb52db2baa339f6c7e8e0cac68f3 /lua/telescope/finders.lua
parentd48a2933d55a5aa2ca3c15e482a90bbffbb49b92 (diff)
feat: Add cool mapping for <C-R> in command mode
Diffstat (limited to 'lua/telescope/finders.lua')
-rw-r--r--lua/telescope/finders.lua4
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/telescope/finders.lua b/lua/telescope/finders.lua
index b1a3819..b44dd71 100644
--- a/lua/telescope/finders.lua
+++ b/lua/telescope/finders.lua
@@ -11,9 +11,7 @@ local finders = {}
-- JobFinder(my_job_args)
---@class Finder
-local Finder = {
- hello = "world"
-}
+local Finder = {}
Finder.__index = Finder
Finder.__call = function(t, ... ) return t:_find(...) end