Commit Graph

19 Commits (b289c8495868e15d19a1631446b6f2ecda43bc0e)

Author SHA1 Message Date
Adam Tauber c8a6ff4569 [fix] remove extra square bracket from statusline 8 years ago
Adam Tauber bbf21cb5f7 [enh] add clearHistory command 8 years ago
Adam Tauber 7bfcc6e947 [fix] code formatting 8 years ago
Adam Tauber 82d1ae6412 [enh] add context specific search functionality 8 years ago
Adam Tauber 34509b049a [fix] override default config.Editor with $EDITOR env var even without config file 8 years ago
Adam Tauber 7c16d9db3c [mod] alphabetical order of config/help items 8 years ago
Adam Tauber 66c0d9baf3 [enh] add openEditor command 8 years ago
potato 2d9dcc9303 [enh] added multipart/form-data requests with file upload capability 8 years ago
Zac Bowen 2021cb615e #65 Implemented functionality that allows a request to be saved to/read from a json file. 8 years ago
Adam Tauber 760d7739f1 [enh] add request duration to statusline 8 years ago
Adam Tauber 54d532497d [enh] add statusline 8 years ago
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