Udayvir Singh

Results 22 comments of Udayvir Singh

I had the same issue which was fixed with #125, in which I replaced `vim.notify` with `nvim_echo` for better readability. ![2022-09-13-170641_1920x1080_scrot](https://user-images.githubusercontent.com/97400310/189891255-dffb9deb-16f7-4a75-9acd-e1089a87a930.png)

@NTBBloodbath the issue that #120 was trying to solve has already been fixed by my previous PR #125. This PR fixes errors when you try to include json values in...

@teto I have added a test `post_json_form`, it should return a error if you try to run it from the master branch.

@NTBBloodbath any updates on this PR? I have also added another [commit](https://github.com/udayvir-singh/rest.nvim/commit/48a7c8564b8ee3e0eaafa094d911699d92a89a09) that fixes parsing of curl arguments with spaces in them. For example: ```js GET http://localhost:8000/ -c cookies ```...

@DogLooksGood 1. `z` is `query-replace-rexep`, `az` does not replace current word/symbol. To replace current symbol/word do `av` or `aav` which is very ergonomic, it also work with `sv` to replace...

The keyboard layout also takes into account normal english word usage, that was insert mode is `e` as it is close to the most used consonants `r` and `t`. The...

> There aren't much bad combinations in this layout, but there aren't much good combinations neither based on this approach. The layout tries to minimize bad combinations, which there are...

I prefer a smother experience over a fast and jerky one: 1. The smother experience goes like this: fast meh meh fast meh meh ... 2. the faster goes like...

> After making yank/replace a DWIM command, we can't yank directly when there's a selection @DogLooksGood You could just use the global keybinds in those edge cases, like `C-y` or...