mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
fix(lang/r): make keymaps in which-key menu available in visual mode (#4565)
## Description `r.nvim` keymaps don't show group names in visual mode. <!-- Describe the big picture of your changes to communicate to the maintainers why we should accept this pull request. --> ## Related Issue(s) No, rather discussion #4564 <!-- If this PR fixes any issues, please link to the issue here. - Fixes #<issue_number> --> ## Screenshots <!-- Add screenshots of the changes if applicable. --> ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines.
This commit is contained in:
parent
4e1fd66078
commit
ee2ec7e474
1 changed files with 1 additions and 0 deletions
|
@ -22,6 +22,7 @@ return {
|
||||||
local wk = require("which-key")
|
local wk = require("which-key")
|
||||||
wk.add({
|
wk.add({
|
||||||
buffer = true,
|
buffer = true,
|
||||||
|
mode = { "n", "v" },
|
||||||
{ "<localleader>a", group = "all" },
|
{ "<localleader>a", group = "all" },
|
||||||
{ "<localleader>b", group = "between marks" },
|
{ "<localleader>b", group = "between marks" },
|
||||||
{ "<localleader>c", group = "chunks" },
|
{ "<localleader>c", group = "chunks" },
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue