lemmy-help icon indicating copy to clipboard operation
lemmy-help copied to clipboard

Surround types with backticks

Open numToStr opened this issue 3 years ago • 1 comments

This will highlight all the types, without taking space of two characters as neovim will hide that via treesitter conceal.

  • Currently
CommentConfig                                     *comment.config.CommentConfig*
    Plugin's configuration

    Fields: ~
        {padding}    (boolean|fun():boolean)  Controls space between the comment
                                              and the line (default: 'true')
        {sticky}     (boolean)                Whether cursor should stay at the
  • Proposed
CommentConfig                                     *comment.config.CommentConfig*
    Plugin's configuration

    Fields: ~
        {padding}    `(boolean|fun():boolean)`  Controls space between the comment
                                                and the line (default: 'true')
        {sticky}     `(boolean)`                Whether cursor should stay at the

numToStr avatar Oct 31 '22 11:10 numToStr