Garrett
Garrett
I'm also seeing that it's effective in Safari but not Firefox. Lulu 2.2.0 macOS 11.1 (M1)
Sorry, I should have been more descriptive! In each of the three videos I'm entering insert mode with `a`, typing a space and then exiting insert mode with `` (or...
If you're talking about the snippet placeholders you can change the keybinding for [`jump_to_mark`](https://github.com/ms-jpq/coq_nvim/blob/coq/docs/KEYBIND.md#coq_settingskeymapjump_to_mark) using [`coq_settings`](https://github.com/ms-jpq/coq_nvim/blob/coq/docs/CONF.md).
Here's the workaround I came up with for my `packer.lua`: ```lua vim.api.nvim_create_augroup("packer", { clear = true }) vim.api.nvim_create_autocmd("BufWritePost", { group = "packer", pattern = "packer.lua", callback = function() for k,...
Would love to see this implemented some time soon!
Thanks for the clarification. I misunderstood the requirement, so apologies for filing a misinformed issue. It would be great to have a warning rather than having the process become unresponsive.
I'm already eager for anticonceal, and I love the idea of potentially using it for this. Thanks for the explanation! It seems for now I'll just need to be conscious...
I'm also experiencing this issue, but only on iOS. On macOS I can use HKSV while connected to Mullvad.
I'm not sure when it was added, but this seems to exist now: > You can also chain two locators together, for example to find a "Save" button inside a...
I cobbled together [my own auto-completion](https://github.com/heygarrett/.config/blob/fb6a6f10c9aae5f9783809549134726f48510548/nvim/lua/my/settings/lsp/completion.lua) at one point and found solutions to some of these problems. > The best approach was to use InsertCharPre event, but I vaguely remember...