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
- Host: GitHub
- URL: https://github.com/deathaxe/sublime-findreplace
- Owner: deathaxe
- License: mit
- Created: 2018-01-06T15:22:44.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-06T15:25:38.000Z (about 8 years ago)
- Last Synced: 2025-01-28T09:46:16.755Z (11 months ago)
- Topics: sublime-package, sublime-plugin, sublime-text-3, sublime-text-plugin
- Language: Python
- Size: 1000 Bytes
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [FindReplace](https://github.com/deathaxe/sublime-findreplace)
[](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"]
}
)
```