How do I get Vim to highlight matching parenthesis?

前端 未结 4 1189
无人及你
无人及你 2021-01-30 21:37

When I browse code in Vim, I need to see opening and closing parenthesis/ brackets, and pressing % seems unproductive.

I tried :set showmatch, bu

相关标签:
4条回答
  • 2021-01-30 22:04

    An upgrade of vim from version 6.3 to 8.0 might swap/upgrade the code file that manages this MatchParen functionality under /usr/share/vim/vim80/plugin/matchparen.vim

    The function to begin investigating a vim failure for highlighting matching brackets is called: Highlight_Matching_Pair(). Do an echo and a sleep and step through the code until matchaddpos(...) runs.

    0 讨论(0)
  • 2021-01-30 22:06

    set showmatch is your best bet. you can also use the % command to jump between matching parenthesis, braces, brackets, quotes, etc.

    0 讨论(0)
  • 2021-01-30 22:19
    DoMatchParen
    

    in your .vimrc file

    or

    :DoMatchParen
    

    within vim itself.

    Edit: This comes from the pi_paren plugin (which is a standard plugin).

    0 讨论(0)
  • 2021-01-30 22:26

    Maybe what you want is this plugin:

    http://www.vim.org/scripts/script.php?script_id=350

    0 讨论(0)
提交回复
热议问题