An open API service indexing awesome lists of open source software.

https://github.com/deathaxe/sublime-findreplace

Sublime Text 3 plugin to provide a "find_replace" text command
https://github.com/deathaxe/sublime-findreplace

sublime-package sublime-plugin sublime-text-3 sublime-text-plugin

Last synced: 4 months ago
JSON representation

Sublime Text 3 plugin to provide a "find_replace" text command

Awesome Lists containing this project

README

          

# [FindReplace](https://github.com/deathaxe/sublime-findreplace)

[![License](https://img.shields.io/github/license/deathaxe/sublime-findreplace.svg?style=flat-square)](LICENSE)

A simple plugin for Sublime Text to provide a "find_replace" command, which can be bound to keys or menus or may be used in macros.

```
Example:

view.run_command(
"find_replace", {
"pattern": "the\s+",
"replace_by": "THE ",
"start_pt": 100,
"flags": ["ALL"]
}
)
```