Release v0.1.3 BREAKING CHANGE: Default keybindings changed New Keybindings: - <leader>rr - Run first request in file (was <leader>hr) - <leader>rc - Run request under cursor (was <leader>hc) Why the change: - Avoid conflicts with help plugins (<leader>h commonly used for help) - Better mnemonics: r = REST/Request - More intuitive: rr = Run Request, rc = Run Cursor Migration: Existing users can keep old keybindings by adding to their config: require('nrest').setup({ keybindings = { run_request = '<leader>hr', run_request_under_cursor = '<leader>hc', }, }) Installation: - GitLab: https://gitlab.ttu.ch/matthias/nrest.git - GitHub: Xxax/nrest.nvim For detailed changes, see CHANGELOG.md