Skip to content

Commit b97ab8e

Browse files
committed
chore: cleanup some comments
1 parent 1253407 commit b97ab8e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: lua/various-textobjs/config/default-keymaps.lua

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ local innerOuterMaps = {
1717
local oneMaps = {
1818
nearEoL = "n", -- does override the builtin "to next search match" textobj, but nobody really uses that
1919
visibleInWindow = "gw",
20-
toNextClosingBracket = "C", -- % has a race condition with vim's builtin matchit plugin
20+
toNextClosingBracket = "C", -- `%` has a race condition with vim's builtin matchit plugin
2121
toNextQuotationMark = "Q",
2222
restOfParagraph = "r",
2323
restOfIndentation = "R",
2424
restOfWindow = "gW",
2525
diagnostic = "!",
2626
column = "|",
27-
entireBuffer = "gG", -- G + gg
28-
url = "L", -- gu, gU, and U would conflict with gugu, gUgU, and gUU. u would conflict with gcu (undo comment)
29-
lastChange = "g;", -- consistent with g; movement
30-
emoji = ".", -- `:` would block the cmdline from visual mode, eE conflicts with motions
27+
entireBuffer = "gG", -- `G` + `gg`
28+
url = "L", -- `gu`, `gU`, and `U` would conflict with `gugu`, `gUgU`, and `gUU`. `u` would conflict with `gcu` (undo comment)
29+
lastChange = "g;", -- consistent with `g;` movement
30+
emoji = ".", -- `:` would block the cmdline from visual mode, `e`/`E` conflicts with motions
3131
}
3232
local ftMaps = {
3333
{ map = { mdLink = "l" }, fts = { "markdown" } },

0 commit comments

Comments
 (0)