Commit Graph

13 Commits (66c0d9baf3137e9d4fd2e3703ef3d4ddd3d8631f)

Author SHA1 Message Date
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