Skip to content

Commit

Permalink
fix(ui)!: unify capital/lowercase meaning for global/buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Apr 1, 2024
1 parent 0e23d5b commit cf50450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/astronvim/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ return {
maps.n["[r"] =
{ function() require("illuminate")["goto_prev_reference"](false) end, desc = "Previous reference" }
maps.n["<Leader>ur"] =
{ function() require("illuminate").toggle() end, desc = "Toggle reference highlighting" }
maps.n["<Leader>uR"] =
{ function() require("illuminate").toggle_buf() end, desc = "Toggle reference highlighting (buffer)" }
maps.n["<Leader>uR"] =
{ function() require("illuminate").toggle() end, desc = "Toggle reference highlighting (global)" }
end,
},
},
Expand Down

0 comments on commit cf50450

Please sign in to comment.