diff options
author | Marcelo Glezer <mg@tekii.com.ar> | 2015-02-03 15:41:09 -0300 |
---|---|---|
committer | Marcelo Glezer <mg@tekii.com.ar> | 2015-02-05 11:31:25 -0300 |
commit | 75cca63b2687db5da0793c2e6d60d38531f18b59 (patch) | |
tree | 21324214b31bf73044cc4d09bdcc3b6f9c9ccd5e /libmproxy/console/flowlist.py | |
parent | ae83d39eba4a5518537d799fc4bd61d083f32944 (diff) | |
download | mitmproxy-75cca63b2687db5da0793c2e6d60d38531f18b59.tar.gz mitmproxy-75cca63b2687db5da0793c2e6d60d38531f18b59.tar.bz2 mitmproxy-75cca63b2687db5da0793c2e6d60d38531f18b59.zip |
added copy to clipboard support for url
Diffstat (limited to 'libmproxy/console/flowlist.py')
-rw-r--r-- | libmproxy/console/flowlist.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmproxy/console/flowlist.py b/libmproxy/console/flowlist.py index 4acb17dc..fbcf1052 100644 --- a/libmproxy/console/flowlist.py +++ b/libmproxy/console/flowlist.py @@ -14,7 +14,7 @@ def _mkhelp(): ("e", "toggle eventlog"), ("F", "toggle follow flow list"), ("g", "copy response(content/headers) to clipboard"), - ("G", "copy request(content/headers) to clipboard"), + ("G", "copy request(content/headers/url) to clipboard"), ("l", "set limit filter pattern"), ("L", "load saved flows"), ("r", "replay request"), @@ -225,6 +225,7 @@ class ConnectionItem(common.WWrap): ( ("content", "c"), ("headers", "h"), + ("url", "u"), ), common.copy_message, self.master, |