Skip to content

Commit

Permalink
Unset -F, -X when invoking less
Browse files Browse the repository at this point in the history
Fixes #110.
  • Loading branch information
simonlindholm committed Jun 4, 2023
1 parent d72d063 commit 1e00d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ def get_arch(arch_str: str) -> "ArchSettings":
# -i ignores case when searching
# -c something about how the screen gets redrawn; I don't remember the purpose
# -#6 makes left/right arrow keys scroll by 6 characters
LESS_CMD: List[str] = ["less", "-SRic", "-#6"]
LESS_CMD: List[str] = ["less", "-SRic", "-+F", "-+X", "-#6"]

DEBOUNCE_DELAY: float = 0.1

Expand Down

0 comments on commit 1e00d6d

Please sign in to comment.