feat: add find_in_files_query command

This commit is contained in:
CJ van den Berg 2024-12-11 20:47:25 +01:00
parent ad43cd4395
commit 4b3904d5f2
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 12 additions and 9 deletions

View file

@ -86,7 +86,7 @@ fn flush_input(self: *Self) !void {
return;
@memcpy(self.last_buf[0..self.input.len], self.input);
self.last_input = self.last_buf[0..self.input.len];
try self.mainview.find_in_files(self.input);
try command.executeName("find_in_files_query", command.fmt(.{self.input}));
}
}