Lucy

Results 23 comments of Lucy

I have the same problem. I have mod4 mapped to multiple keys. But the popup will only close if I use whatever single key is passed to `modifier` when calling...

Take this Odin program: ```odin package main main :: proc() { panic(""); } ``` then run it with AsyncRun `:AsyncRun odin run main.odin` Even though the program just exits normally...

@skywind3000 Simply running this program breaks AsyncRun. ```c int main(){ return -1; } ``` ```cl main.c /nologo``` Then on vim: ```:AsyncRun main``` gets it stuck forever. Only fix is to...

Ok, I tested it with vim and it works. Then I tested it with Neovim with the same config and it doesn't. Maybe Neovim is the problem.

https://user-images.githubusercontent.com/11927498/157252127-cff41b9d-54f6-4a9f-82f2-59a3e9ab663a.mp4

@urikaoli no it's not an LSP issue. The same thing happens on rust-analyzer. It's some configuration thing. I'll look into it later.

@urikaoli no, that made it even worse haha. You said it works for you. can you share your config?

workaround: ```lua vim.g.coq_settings = { auto_start= "shut-up", keymap = { recommended = false, manual_complete = "", bigger_preview = "", jump_to_mark = "", eval_snips = "", ['repeat'] = "", } }...

This is a temporary fix, at least for my particular keymap. ```rs self.last_insert.0 = match self.keymaps.get(mode, key) { KeymapResult::Matched(command) => command, KeymapResult::MatchedSequence(commands) => { commands.last().unwrap().clone() } // FIXME: insert mode...

@archseer Changes made. It still doesn't seem like the dot `.` operator works as it should. When I press `.` after executing this keymap: ```toml [keys.normal] C = ["collapse_selection", "extend_to_line_end",...