1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Rust patterns
=============
- `comments` matches comments
- `crates` matches crate lines
- `enums` matches enum definitions
- `fns` matches function definitions
- `impls` matches implementation definitions
- `macros` matches `macro_rules!` definitions
- `mods` matches module definitions
- `names` matches identifiers (and keywords)
- `strings` matches strings
- `structs` matches struct definitions
- `traits` matches trait definitions
- `unions` matches union definitions
- `uses` matches use lines
- `zap_comments` removes comments from matches
- `zap_strings` removes strings from matches
|