We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent edfb294 commit 5abe19bCopy full SHA for 5abe19b
1 file changed
init.lua
@@ -859,9 +859,16 @@ require('lazy').setup({
859
--
860
-- Examples:
861
-- - va) - [V]isually select [A]round [)]paren
862
- -- - yinq - [Y]ank [I]nside [N]ext [Q]uote
+ -- - yinq - [Y]ank [I]nside [I]next [Q]uote
863
-- - ci' - [C]hange [I]nside [']quote
864
- require('mini.ai').setup { n_lines = 500 }
+ require('mini.ai').setup {
865
+ -- NOTE: Avoid conflicts with the built-in incremental selection mappings on Neovim>=0.12 (see `:help treesitter-incremental-selection`)
866
+ mappings = {
867
+ around_next = 'aa',
868
+ inside_next = 'ii',
869
+ },
870
+ n_lines = 500,
871
+ }
872
873
-- Add/delete/replace surroundings (brackets, quotes, etc.)
874
0 commit comments