Skip to content

Commit

Permalink
chore(neovim): add silent option to lasterisk (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
izumin5210 authored Jan 14, 2025
1 parent 9512be3 commit d3726ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/.config/nvim/lua/plugins/edit/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ return {
{
"*",
function()
require("lasterisk").search()
require("lasterisk").search({ is_whole = true, silent = true })
if package.loaded["hlslens"] then
require("hlslens").start()
end
Expand All @@ -167,7 +167,7 @@ return {
{
"g*",
function()
require("lasterisk").search({ is_whole = false })
require("lasterisk").search({ is_whole = false, silent = true })
if package.loaded["hlslens"] then
require("hlslens").start()
end
Expand Down

0 comments on commit d3726ed

Please sign in to comment.