博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sublime搜索和替换--多文件搜索替换
阅读量:6983 次
发布时间:2019-06-27

本文共 1141 字,大约阅读时间需要 3 分钟。

Search and Replace - Multiple Files

Searching

To open the search panel for files, press Ctrl + Shift + F. You can use thekeyboard to control some search panel options and search actions:

Toggle Regular Expressions Alt + R
Toggle Case Sensitivity Alt + C
Toggle Exact matches Alt + W
Find Next Enter

Search Scope

The Where field in the search panel determines search scope. You candefine scopes in several ways:

  • Adding individual directories (Unix-style paths, even on Windows)
  • Adding/excluding files based on a pattern
  • Adding symbolic locations (<open folders>, <open files>)

It is also possible to combine these filters using commas; for example:

/C/Users/Joe/Top Secret,- .html,<open files>

Press the ... button in the search panel to display a menu containingthese options.

Results Format

In the search panel, you can customize the display of results with the followingoptions:

  • Show in Separate Buffer/Output Panel
  • Show Context

Navigating Results

If the search yields matches, you can move through the sequence using thefollowing key bindings:

Next Match F4
Previous Match Shift + F4

转载于:https://www.cnblogs.com/yutingliuyl/p/7071640.html

你可能感兴趣的文章
Python 发送邮件
查看>>
图解git原理与日常实用指南
查看>>
程序员的职业发展:技术路线 v.s. 管理路线?
查看>>
简单高效的开发Android应用--KTea库的入门和进阶
查看>>
C++复习考点
查看>>
一道事件环面试题引发的思考
查看>>
url的校验
查看>>
Flex容器
查看>>
mysql Can't connect to MySQL server on '' (61)错误记录
查看>>
JVM垃圾回收机制
查看>>
深入剖析Vue源码 - 组件进阶
查看>>
记一次dll构建时机优化
查看>>
【译】Redis Hyperloglog 的转换
查看>>
mysql修改密码
查看>>
《以太坊白皮书》笔记(1)—— 比特币介绍
查看>>
babel es6 to es5
查看>>
【软件开发底层知识修炼】二 深入浅出处理器之二 中断的概念与意义
查看>>
electron打包更新与集成sqlite小总结
查看>>
CentOS 安装 pip
查看>>
React性能优化之代码分割
查看>>