Mohamed Daahir
Mohamed Daahir
- `GotoTop` and `GotoBottom` actions will move the cursor to the first and last path respectively. - `PageDown`, `PageUp`, `HalfPageDown`, and `HalfPageUp` actions will clamp the cursor position between the...
It would be nice if `fx`'s cursor behaved similarly to text editors which always have their cursor in the viewport when jumping around. ### Steps to reproduce: 1. Run `curl...
In previous versions of fx, it was possible to write a reducer without leaving the interactive mode by pressing `.`. The closest workaround I can think of now is using...
Doing so lets us have finer control over what the final output looks like. I initially tried to use `clap_mangen` but I wasn't pleased with how the output looked. **Edit**:...
In anticipation of the next major version, Clap v3.2 deprecated many existing APIs. Because of that, It would be beneficial for us to update early so we can provide early...
- [x] JSON path parsing is split into tokenizing and parsing steps. - [x] SyntaxError from tokenizing a JSON path is highlighted. Resolves #259
See https://github.com/ducaale/xh/pull/217#discussion_r889678666
This is how the current progress bar looks ``` ⠋ 36% [#######################>------------------------------------------] 35.74MiB 17.34MiB/s ETA 4s ``` I wonder if getting rid of `>` and replacing `-` with `.` would...
This is how HTTPie 3.1.1.dev0 handles incomplete downloads: ```sh http -d httpbin.org/gzip HTTP/1.1 200 OK Access-Control-Allow-Credentials: true Access-Control-Allow-Origin: * Content-Encoding: gzip Content-Length: 224 Content-Type: application/json Date: Sat, 14 May 2022...
#### Expected ```sh $ xh httpbin.org/post --raw=hello --curl # Not sure if content-type should be set if body is invalid JSON curl http://httpbin.org/post -H 'content-type: application/json' -H 'accept: application/json, */*;q=0.5'...