Jakub F. Bortlík
Jakub F. Bortlík
Hi guys, the reason why mauricekraus' workaround doesn't completely solve the issue for me is that when I activate the `poetry shell` in one `tmux` pane, navigation does not work...
> Understood and thanks for clarifying. > > It sounds like VS Code actually just uses a dirty hack for this, rather than extending the LSP protocol: > > >...
Hi @Otterpatsch, not sure if this is still relevant, but you can take inspiration from how [gitlab.nvim](https://github.com/harrisoncramer/gitlab.nvim) does this: You can [focus the file panel](https://github.com/harrisoncramer/gitlab.nvim/blob/138b96baea02629ea007398d6d196c6f8d4a6c25/lua/gitlab/reviewer/init.lua#L104) and then use the `diffview.lib.get_current_view()`...
I'm experiencing probably the same problem, I have this in my config: `vim.keymap.set('i', '', function () return vim.fn['codeium#Accept']() end, { expr = true })` and when I inspect the mapping...
> I'm experiencing probably the same problem, I have this in my config: `vim.keymap.set('i', '', function () return vim.fn['codeium#Accept']() end, { expr = true })` and when I inspect the...
In my case the problem was that the `` mapping was overridden by the [vim-rsi](https://github.com/tpope/vim-rsi) plugin. I've replaced it with a different [readline](https://github.com/ryvnf/readline.vim) plugin that suits my needs even better...
I am experiencing the same issue with the JellyBeans colorscheme. The issue can be reproduced by substituting `"ellisonleao/gruvbox.nvim",` with `"nanotech/jellybeans.vim"` in the minimal config provided by Mayrixon.
Hi, this functionality would indeed very useful. Thanks for all the work that has already been done on it! Another usecase: aligning text in a tree (e.g., [NuiTree](https://github.com/MunifTanjim/nui.nvim/tree/main/lua/nui/tree)). This is...
All you need to do is let nvim assign the `markdown` filetype to the `mdx` files. One way to do this is to create a `~/.config/nvim/after/ftdetect/mdx.lua` file with the following...
This seems to be fixed in version 1.10. I've just tried the example in [mypy-play](https://mypy-play.net/?mypy=latest&python=3.12&gist=8c4c845f4b94692acf880b4b99b3e8ce), and it passes just fine.