@@ -348,30 +348,32 @@ Displays the signature of the selected completion item. Remapping currently not
348348
349349These mappings are in the style of [ vim-unimpaired] ( https://github.com/tpope/vim-unimpaired ) .
350350
351- | Key | Description | Command |
352- | ----- | ----------- | ------- |
353- | ` ]d ` | Go to next diagnostic (** LSP** ) | ` goto_next_diag ` |
354- | ` [d ` | Go to previous diagnostic (** LSP** ) | ` goto_prev_diag ` |
355- | ` ]D ` | Go to last diagnostic in document (** LSP** ) | ` goto_last_diag ` |
356- | ` [D ` | Go to first diagnostic in document (** LSP** ) | ` goto_first_diag ` |
357- | ` ]f ` | Go to next function (** TS** ) | ` goto_next_function ` |
358- | ` [f ` | Go to previous function (** TS** ) | ` goto_prev_function ` |
359- | ` ]t ` | Go to next type definition (** TS** ) | ` goto_next_class ` |
360- | ` [t ` | Go to previous type definition (** TS** ) | ` goto_prev_class ` |
361- | ` ]a ` | Go to next argument/parameter (** TS** ) | ` goto_next_parameter ` |
362- | ` [a ` | Go to previous argument/parameter (** TS** ) | ` goto_prev_parameter ` |
363- | ` ]c ` | Go to next comment (** TS** ) | ` goto_next_comment ` |
364- | ` [c ` | Go to previous comment (** TS** ) | ` goto_prev_comment ` |
365- | ` ]T ` | Go to next test (** TS** ) | ` goto_next_test ` |
366- | ` [T ` | Go to previous test (** TS** ) | ` goto_prev_test ` |
367- | ` ]p ` | Go to next paragraph | ` goto_next_paragraph ` |
368- | ` [p ` | Go to previous paragraph | ` goto_prev_paragraph ` |
369- | ` ]g ` | Go to next change | ` goto_next_change ` |
370- | ` [g ` | Go to previous change | ` goto_prev_change ` |
371- | ` ]G ` | Go to last change | ` goto_last_change ` |
372- | ` [G ` | Go to first change | ` goto_first_change ` |
373- | ` ]Space ` | Add newline below | ` add_newline_below ` |
374- | ` [Space ` | Add newline above | ` add_newline_above ` |
351+ | Key | Description | Command |
352+ | ----- | ----------- | ------- |
353+ | ` ]d ` | Go to next diagnostic (** LSP** ) | ` goto_next_diag ` |
354+ | ` [d ` | Go to previous diagnostic (** LSP** ) | ` goto_prev_diag ` |
355+ | ` ]D ` | Go to last diagnostic in document (** LSP** ) | ` goto_last_diag ` |
356+ | ` [D ` | Go to first diagnostic in document (** LSP** ) | ` goto_first_diag ` |
357+ | ` ]f ` | Go to next function (** TS** ) | ` goto_next_function ` |
358+ | ` [f ` | Go to previous function (** TS** ) | ` goto_prev_function ` |
359+ | ` ]t ` | Go to next type definition (** TS** ) | ` goto_next_class ` |
360+ | ` [t ` | Go to previous type definition (** TS** ) | ` goto_prev_class ` |
361+ | ` ]a ` | Go to next argument/parameter (** TS** ) | ` goto_next_parameter ` |
362+ | ` [a ` | Go to previous argument/parameter (** TS** ) | ` goto_prev_parameter ` |
363+ | ` ]c ` | Go to next comment (** TS** ) | ` goto_next_comment ` |
364+ | ` [c ` | Go to previous comment (** TS** ) | ` goto_prev_comment ` |
365+ | ` ]T ` | Go to next test (** TS** ) | ` goto_next_test ` |
366+ | ` [T ` | Go to previous test (** TS** ) | ` goto_prev_test ` |
367+ | ` ]p ` | Go to next paragraph | ` goto_next_paragraph ` |
368+ | ` [p ` | Go to previous paragraph | ` goto_prev_paragraph ` |
369+ | ` ]g ` | Go to next change | ` goto_next_change ` |
370+ | ` [g ` | Go to previous change | ` goto_prev_change ` |
371+ | ` ]G ` | Go to last change | ` goto_last_change ` |
372+ | ` [G ` | Go to first change | ` goto_first_change ` |
373+ | ` [x ` | Go to next (X)HTML element | ` goto_next_xml_element ` |
374+ | ` ]x ` | Go to previous (X)HTML element | ` goto_prev_xml_element ` |
375+ | ` ]Space ` | Add newline below | ` add_newline_below ` |
376+ | ` [Space ` | Add newline above | ` add_newline_above ` |
375377
376378## Insert mode
377379
0 commit comments