Commit Graph

8 Commits (aab7f36262b5e2dc94f84ba2d18f7209377d54e6)

Author SHA1 Message Date
Everton Marques c30e7a09ae Restrict allowed TLS versions. 8 years ago
Adam Tauber 3e3f1142e3 [enh] ability to disable following redirections 8 years ago
Salahutdinov Dmitry e6e364370d feature: result formatter extensibility with minor refactor and several testsy 8 years ago
Adam Tauber 7f60f36194 [enh] add "delete word" command and bind to ctrl+w by default 8 years ago
Adam Tauber 1e666b8541 [enh] implement "delete line" functionality and bind to ctrl+d by default 8 years ago
Adam Tauber bf3c5b6bca [enh] configurable keybindings ++ help popup 8 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. 8 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.
8 years ago