Skip to content

Commit

Permalink
Mods
Browse files Browse the repository at this point in the history
  • Loading branch information
madprops committed Aug 23, 2024
1 parent 4f410aa commit 9a84920
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ Values:
Number of lines to show after
--ignore-exact
Add this component ignore rule (exact)
Add component ignore rule (exact)
--ignore-contains
Add this component ignore rule (contains)
Add component ignore rule (contains)
--ignore-starts
Add this component ignore rule (starts with)
Add component ignore rule (starts with)
--ignore-ends
Add this component ignore rule (ends with)
Add component ignore rule (ends with)
Arguments:
Expand Down
8 changes: 4 additions & 4 deletions src/config.nim
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ proc get_config*() =
context_before = add_arg(name="context-before", kind="value", value="0", help="Number of lines to show before", alt="B")
context_after = add_arg(name="context-after", kind="value", value="0", help="Number of lines to show after", alt="A")
no_spacing = add_arg(name="no-spacing", kind="flag", help="Don't add spacing between items", alt="s")
ignore_exact = add_arg(name="ignore-exact", kind="value", multiple=true, help="Add this component ignore rule (exact)")
ignore_contains = add_arg(name="ignore-contains", kind="value", multiple=true, help="Add this component ignore rule (contains)")
ignore_starts = add_arg(name="ignore-starts", kind="value", multiple=true, help="Add this component ignore rule (starts with)")
ignore_ends = add_arg(name="ignore-ends", kind="value", multiple=true, help="Add this component ignore rule (ends with)")
ignore_exact = add_arg(name="ignore-exact", kind="value", multiple=true, help="Add component ignore rule (exact)")
ignore_contains = add_arg(name="ignore-contains", kind="value", multiple=true, help="Add component ignore rule (contains)")
ignore_starts = add_arg(name="ignore-starts", kind="value", multiple=true, help="Add component ignore rule (starts with)")
ignore_ends = add_arg(name="ignore-ends", kind="value", multiple=true, help="Add component ignore rule (ends with)")

add_header("Search content of files recursively")
add_header(&"Version: {version}")
Expand Down

0 comments on commit 9a84920

Please sign in to comment.