@@ -352,32 +352,34 @@ Displays the signature of the selected completion item. Remapping currently not
352352
353353These mappings are in the style of [ vim-unimpaired] ( https://github.com/tpope/vim-unimpaired ) .
354354
355- | Key | Description | Command |
356- | ----- | ----------- | ------- |
357- | ` ]d ` | Go to next diagnostic (** LSP** ) | ` goto_next_diag ` |
358- | ` [d ` | Go to previous diagnostic (** LSP** ) | ` goto_prev_diag ` |
359- | ` ]D ` | Go to last diagnostic in document (** LSP** ) | ` goto_last_diag ` |
360- | ` [D ` | Go to first diagnostic in document (** LSP** ) | ` goto_first_diag ` |
361- | ` ]f ` | Go to next function (** TS** ) | ` goto_next_function ` |
362- | ` [f ` | Go to previous function (** TS** ) | ` goto_prev_function ` |
363- | ` ]t ` | Go to next type definition (** TS** ) | ` goto_next_class ` |
364- | ` [t ` | Go to previous type definition (** TS** ) | ` goto_prev_class ` |
365- | ` ]a ` | Go to next argument/parameter (** TS** ) | ` goto_next_parameter ` |
366- | ` [a ` | Go to previous argument/parameter (** TS** ) | ` goto_prev_parameter ` |
367- | ` ]c ` | Go to next comment (** TS** ) | ` goto_next_comment ` |
368- | ` [c ` | Go to previous comment (** TS** ) | ` goto_prev_comment ` |
369- | ` ]T ` | Go to next test (** TS** ) | ` goto_next_test ` |
370- | ` [T ` | Go to previous test (** TS** ) | ` goto_prev_test ` |
371- | ` ]p ` | Go to next paragraph | ` goto_next_paragraph ` |
372- | ` [p ` | Go to previous paragraph | ` goto_prev_paragraph ` |
373- | ` ]g ` | Go to next change | ` goto_next_change ` |
374- | ` [g ` | Go to previous change | ` goto_prev_change ` |
375- | ` ]G ` | Go to last change | ` goto_last_change ` |
376- | ` [G ` | Go to first change | ` goto_first_change ` |
377- | ` [x ` | Go to next (X)HTML element | ` goto_next_xml_element ` |
378- | ` ]x ` | Go to previous (X)HTML element | ` goto_prev_xml_element ` |
379- | ` ]Space ` | Add newline below | ` add_newline_below ` |
380- | ` [Space ` | Add newline above | ` add_newline_above ` |
355+ | Key | Description | Command |
356+ | ----- | ----------- | ------- |
357+ | ` ]d ` | Go to next diagnostic (** LSP** ) | ` goto_next_diag ` |
358+ | ` [d ` | Go to previous diagnostic (** LSP** ) | ` goto_prev_diag ` |
359+ | ` ]D ` | Go to last diagnostic in document (** LSP** ) | ` goto_last_diag ` |
360+ | ` [D ` | Go to first diagnostic in document (** LSP** ) | ` goto_first_diag ` |
361+ | ` ]f ` | Go to next function (** TS** ) | ` goto_next_function ` |
362+ | ` [f ` | Go to previous function (** TS** ) | ` goto_prev_function ` |
363+ | ` ]t ` | Go to next type definition (** TS** ) | ` goto_next_class ` |
364+ | ` [t ` | Go to previous type definition (** TS** ) | ` goto_prev_class ` |
365+ | ` ]a ` | Go to next argument/parameter (** TS** ) | ` goto_next_parameter ` |
366+ | ` [a ` | Go to previous argument/parameter (** TS** ) | ` goto_prev_parameter ` |
367+ | ` ]c ` | Go to next comment (** TS** ) | ` goto_next_comment ` |
368+ | ` [c ` | Go to previous comment (** TS** ) | ` goto_prev_comment ` |
369+ | ` ]T ` | Go to next test (** TS** ) | ` goto_next_test ` |
370+ | ` [T ` | Go to previous test (** TS** ) | ` goto_prev_test ` |
371+ | ` ]p ` | Go to next paragraph | ` goto_next_paragraph ` |
372+ | ` [p ` | Go to previous paragraph | ` goto_prev_paragraph ` |
373+ | ` ]g ` | Go to next change | ` goto_next_change ` |
374+ | ` [g ` | Go to previous change | ` goto_prev_change ` |
375+ | ` ]G ` | Go to last change | ` goto_last_change ` |
376+ | ` [G ` | Go to first change | ` goto_first_change ` |
377+ | ` [x ` | Go to next (X)HTML element | ` goto_next_xml_element ` |
378+ | ` ]x ` | Go to previous (X)HTML element | ` goto_prev_xml_element ` |
379+ | ` ]Space ` | Add newline below | ` add_newline_below ` |
380+ | ` [Space ` | Add newline above | ` add_newline_above ` |
381+ | ` [n ` | Go to the next file alphabetically in the current file's directory | ` goto_next_file ` |
382+ | ` ]n ` | Go to the previous file alphabetically in the current file's directory | ` goto_prev_file ` |
381383
382384## Insert mode
383385
0 commit comments