Skip to content

Commit

Permalink
fixup! feat(git,opt-in): experimental git grep backend
Browse files Browse the repository at this point in the history
  • Loading branch information
mikavilpas committed Feb 23, 2025
1 parent 7dd16f7 commit 4d23bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/blink-ripgrep/backends/git_grep/git_grep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ local GitGrepBackend = {}
function GitGrepBackend.new(config)
local self = setmetatable({}, { __index = GitGrepBackend })
self.config = config
return self --[[@as blink-ripgrep.Backend]]
return self --[[@as blink-ripgrep.GitGrepBackend]]
end

function GitGrepBackend:get_matches(prefix, context, resolve)
Expand Down
2 changes: 1 addition & 1 deletion lua/blink-ripgrep/backends/ripgrep/ripgrep.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local RipgrepBackend = {}
function RipgrepBackend.new(config)
local self = setmetatable({}, { __index = RipgrepBackend })
self.config = config
return self --[[@as blink-ripgrep.Backend]]
return self --[[@as blink-ripgrep.RipgrepBackend]]
end

function RipgrepBackend:get_matches(prefix, context, resolve)
Expand Down

0 comments on commit 4d23bee

Please sign in to comment.