Skip to content

Commit

Permalink
Remove / binding alias for limit
Browse files Browse the repository at this point in the history
The search and limit functionality is too different.
  • Loading branch information
cortesi committed Jan 5, 2014
1 parent d5f9b02 commit a49115a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libmproxy/console/flowlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ def _mkhelp():
("e", "toggle eventlog"),
("F", "toggle follow flow list"),
("l", "set limit filter pattern"),
("/", "same as above"),
("L", "load saved flows"),
("r", "replay request"),
("V", "revert changes to request"),
Expand Down Expand Up @@ -245,7 +244,7 @@ def keypress(self, size, key):
self.master.clear_flows()
elif key == "e":
self.master.toggle_eventlog()
elif key == "l" or key == "/":
elif key == "l":
self.master.prompt("Limit: ", self.master.state.limit_txt, self.master.set_limit)
elif key == "L":
self.master.path_prompt(
Expand Down

0 comments on commit a49115a

Please sign in to comment.