mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
Allow focus-follow shortcut to work in flow view context. (#6088)
* add follow new shortcut to flowview context * update changelog * [autofix.ci] apply automated fixes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
2261346334
commit
33682c206e
2 changed files with 8 additions and 1 deletions
|
|
@ -30,6 +30,8 @@
|
|||
([#5904](https://github.com/mitmproxy/mitmproxy/pull/5904), @truebit)
|
||||
* mitmproxy now requires Python 3.10 or above.
|
||||
([#5954](https://github.com/mitmproxy/mitmproxy/pull/5954), @mhils)
|
||||
* focus-follow shortcut will now work in flow view context too.
|
||||
([#6088](https://github.com/mitmproxy/mitmproxy/pull/6088), @sujaldev)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
|
|
|
|||
|
|
@ -82,7 +82,12 @@ def map(km: Keymap) -> None:
|
|||
"Export this flow to file",
|
||||
)
|
||||
km.add("f", "console.command.set view_filter", ["flowlist"], "Set view filter")
|
||||
km.add("F", "set console_focus_follow toggle", ["flowlist"], "Set focus follow")
|
||||
km.add(
|
||||
"F",
|
||||
"set console_focus_follow toggle",
|
||||
["flowlist", "flowview"],
|
||||
"Set focus follow",
|
||||
)
|
||||
km.add(
|
||||
"ctrl l",
|
||||
"console.command cut.clip ",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue