We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5b0e49 commit 9b4fbc5Copy full SHA for 9b4fbc5
1 file changed
init.lua
@@ -845,9 +845,16 @@ require('lazy').setup({
845
--
846
-- Examples:
847
-- - va) - [V]isually select [A]round [)]paren
848
- -- - yinq - [Y]ank [I]nside [N]ext [Q]uote
+ -- - yinq - [Y]ank [I]nside [I]next [Q]uote
849
-- - ci' - [C]hange [I]nside [']quote
850
- require('mini.ai').setup { n_lines = 500 }
+ require('mini.ai').setup {
851
+ -- NOTE: Avoid conflicts with the built-in incremental selection mappings on Neovim>=0.12 (see `:help treesitter-incremental-selection`)
852
+ mappings = {
853
+ around_next = 'aa',
854
+ inside_next = 'ii',
855
+ },
856
+ n_lines = 500,
857
+ }
858
859
-- Add/delete/replace surroundings (brackets, quotes, etc.)
860
0 commit comments