Commit Graph

24 Commits (master)

Author SHA1 Message Date
Adam Tauber 107f2e8de5 [mod] rebind redirect restriction to F11 to be able to use it on linux/urxwt 5 years ago
Adam Tauber fe0a5e9810 [fix] add redirect toggle command - fixes #121 5 years ago
Shodiq 624da9483c add F12 to the documentation and help 5 years ago
Shodiq 2c8b810368 implement toggle key for redirects restriction 5 years ago
Colin T.A. Gray 3bd6a0ff4e bind 'ctrl+f' to 'loadRequest' command, document it and -f/--file option 7 years ago
Adam Tauber c8a6ff4569 [fix] remove extra square bracket from statusline 7 years ago
Adam Tauber bbf21cb5f7 [enh] add clearHistory command 7 years ago
Adam Tauber 7bfcc6e947 [fix] code formatting 7 years ago
Adam Tauber 82d1ae6412 [enh] add context specific search functionality 7 years ago
Adam Tauber 34509b049a [fix] override default config.Editor with $EDITOR env var even without config file 7 years ago
Adam Tauber 7c16d9db3c [mod] alphabetical order of config/help items 7 years ago
Adam Tauber 66c0d9baf3 [enh] add openEditor command 7 years ago
potato 2d9dcc9303 [enh] added multipart/form-data requests with file upload capability 7 years ago
Zac Bowen 2021cb615e #65 Implemented functionality that allows a request to be saved to/read from a json file. 7 years ago
Adam Tauber 760d7739f1 [enh] add request duration to statusline 7 years ago
Adam Tauber 54d532497d [enh] add statusline 7 years ago
Everton Marques c30e7a09ae Restrict allowed TLS versions. 7 years ago
Adam Tauber 3e3f1142e3 [enh] ability to disable following redirections 7 years ago
Salahutdinov Dmitry e6e364370d feature: result formatter extensibility with minor refactor and several testsy 7 years ago
Adam Tauber 7f60f36194 [enh] add "delete word" command and bind to ctrl+w by default 7 years ago
Adam Tauber 1e666b8541 [enh] implement "delete line" functionality and bind to ctrl+d by default 7 years ago
Adam Tauber bf3c5b6bca [enh] configurable keybindings ++ help popup 7 years ago
Zac Bowen 2eeb02978a Added support for websites with invalid ssl certificates. This can be achieved by setting the insecure parameter in sample-config.toml or by using the --insecure flag on the command line. By default this parameter is set to false. 7 years ago
Benaiah Mischenko 4ce9984b04 Add configuration system
The new configuration system, using TOML, loads into `app.config`
using a TOML config file. This can be specified on the command-line
with the `-c` option, or it can be at one of the following default
locations:

- Linux: $XDG_CONFIG_HOME/wuzz/config.toml (by default this is ~/.config/wuzz/config.toml)
- Other OSs: ~/.wuzz/config.toml

Currently the following keys can be set, along with their default
values:

```toml
[general]

timeout = "1m" # string parsed into time.Duration
formatJSON = true # toggles JSON formatting
preserveScrollPosition = true # currently unused
defaultURLScheme = "https" # when a URL is not provided, this is the scheme used by default
```

In addition, a [keys] section can also be set and will be successfully
parsed, but it is currently non-functional.
7 years ago