Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Fix lua keybindings in README (folke#321)
The lua keybinds below were like this: ``` vim.keymap.set("n", "<leader>xl", function() require("trouble").open("quickfix") end) vim.keymap.set("n", "<leader>xq", function() require("trouble").open("loclist") end) ``` As it might not be noticeable the `<leader>xl` keybinding was opening the `quickfix` and the `<leader>xq` keybinding was opening the `loclist`. So I thought about changing the order just to be more straight forward to new users and to be in sync with the vim keybindings above the lua ones.
- Loading branch information