Hide all (not)matching lines in Vim

后端 未结 8 683
盖世英雄少女心
盖世英雄少女心 2021-01-30 01:35

Is it possible to show/hide all matching lines in vi or Vim? Not highlight but just show only those lines.

For example I have a text with word the word ERROR

8条回答
  •  不知归路
    2021-01-30 01:51

    You can use

    :g/ERROR/
    

    to print all the lines with ERROR

    Also there is a Vim plugin which I saw many times but didn't use: foldsearch : fold away lines that don't match a given pattern

提交回复
热议问题