zoukankan      html  css  js  c++  java
  • Vim编辑器-Searching

    3 Searching

    • Simple forward searches
    • Search options
    • Incremental searches
    • Changing directions
    • Basic regular expressions

    • Simple Searches
      To search for a string, use the /string command.
      To find the next include, use the command /<Enter>.
      Another way to find the next match is with the n command.
      Both the / and n commands can have a count specified. If there is a count, the
      command searches for the count number of matches from the current location.

    • Search History
      Now let’s start searching by typing a simple / without pressing . If you press

    • Searching Options
      highlight: :set hlsearch
      :set nohlsearch turn off
      To clear the current highlighting, use the following command: :nohlsearch
      Search highlighting is now turned off; matched text will not be highlighted. However, the highlighting will return when you use a search command.

    • Incremental Searches
      :set incsearch The editor starts searching as soon as you type the first character of the string. Each additional character further refines the search.
      :set noincsearch

    • Searching Backward
      The reverse search command (?) searches backward.

    *Changing Direction
    The N command reverses the direc- tion on the search and repeats it.

    • Basic Regular Expressions
      The Beginning (^) and End ($) of a Line
      Match Any Single Character (.)

    • Matching Special Characters
      Most symbols have a special meaning inside a regular expression.To match these spe- cial symbols, you need to precede them with a backslash ().To find the. (period), for example, use the string the..

    Super
  • 相关阅读:
    Appium
    iOS 定位方式 iOSNsPredicateString 详解
    Appium 遇到 Unable to launch WebDriverAgent because of xcodebuild failure: xcodebuild failed with code 65 的解决方法
    自动化工具 appium 在真机上测试的配置 (使用个人 Apple ID)
    查看iOS App的bundleId
    阿里巴巴热招求推荐求转发
    一文读懂网络协议
    Idea生成Javadoc
    系统监控
    Hystrix使用详解
  • 原文地址:https://www.cnblogs.com/chao8888/p/15374732.html
Copyright © 2011-2022 走看看