xzbdmw

Results 60 comments of xzbdmw

https://github.com/hrsh7th/nvim-cmp/blob/ce16de5665c766f39c271705b17fff06f7bcb84f/lua/cmp/view.lua#L102 ```lua for _, e in ipairs(s:get_entries(ctx)) do e.score = e.score + priority table.insert(group_entries, e) local is_copilot = e:get_completion_item().copilot if not is_copilot then offset = math.min(offset, e:get_offset()) end end ```

@alwaysamer have you tried my patch above, I’m afraid there is nothing to do by copilot here

You need to modify cmp source code as the link points to.

@alwaysamer I think require("cmp").setup({ view = { entries = { follow_cursor = true } } }) this can be a workaround too, but maybe what you want

Forks who are using copilot now can use copilot-cmp with my pr which add multi-line ghost-text and dynamic window flip capability, I has been using it for 2 month, hope...

really strange. I download default lazyvim , and no problems, after I add `vim.opt.relativenumber = false` in config/options.lua, the same problem occurs

this is log info during freeze(last line). ```log TRACE [neovide::window::keyboard_manager] Key pressed w ModifiersState(0x0) TRACE [neovide::channel_utils] UICommand Serial(Keyboard("w")) TRACE [neovide::bridge::ui_commands] In Serial Command TRACE [neovide::bridge::ui_commands] Keyboard Input Sent: w TRACE...

this is neovide_rCURRENT.log ```log TRACE [neovide::window::keyboard_manager] Key pressed w ModifiersState(0x0) TRACE [neovide::channel_utils] UICommand Serial(Keyboard("w")) TRACE [neovide::window::keyboard_manager] KeyEvent { physical_key: Code( KeyW, ), logical_key: Character( "w", ), text: Some( "w", ),...

I build from source of your commit ``` nvim --version NVIM v0.10.0-dev-6306+gcbb7632aa Build type: RelWithDebInfo LuaJIT 2.1.1707061634 Run "nvim -V1 -v" for more info ``` and problem is the same.

not familiar with build step ```bash git clone https://github.com/fredizzimo/neovim.git git checkout cbb7632aa0168b6b69f17ec2f97aa3c30eb58553 make CMAKE_BUILD_TYPE=RelWithDebInfo sudo make install ```