Andrew Magee
Andrew Magee
I was able to solve this problem with `sudo apt install librust-xcb+debug-all-dev`
I had a bit more of a look at this and discovered that it is the neoclide/coc.nvim plugin that is providing the Omnicomplete suggestions. It seems that makes this issue...
Same issue here with Dvorak layout; issue goes away immediately if I change the layout to QWERTY -- so looks like it's a general issue with non-QWERTY layouts?
Did a bit of digging. Turns out that in the 'keydown' handler `NeovimInput.prototype.onInputNonText`, `event.key` is already wrong. This seems relevant: https://github.com/atom/atom-keymap/issues/37
Yep, I was able to fix the problem by editing the NyaoVim's `package.json` file, replacing the `electron-prebuilt` version to `"*"` and doing an `npm upgrade`.
I think you want to to await `book.locations.generate()` but then just use `this.book.locations`, not the result of the `generate` function. Like this: ```javascript await book.locations.generate(1024); console.log(book.locations.locationFromCfi()); ``` I'm able to...