VimWei

Results 51 comments of VimWei

Fixed: https://github.com/mpv-player/mpv/pull/15183

my VIMRC: ```vim Plug 'lervag/wiki.vim' Plug 'junegunn/fzf' Plug 'bullets-vim/bullets.vim' if has('nvim') Plug 'nvim-lua/plenary.nvim' Plug 'nvim-telescope/telescope.nvim' endif ``` and related plugin config: * https://github.com/VimWei/vim-init/blob/master/init/plugins.config/wiki.vim.vim * https://github.com/VimWei/vim-init/blob/master/init/plugins.config/telescope.nvim.vim

About `g:wiki_select_method` help doc: 1. For the Lua backend and Telescope section, should there not be parentheses `()` at the end? 2. For the Telescope section, is there an extra...

If `let g:wiki_fzf_tags_opts = '--preview "bat --color=always {2..}"'`, some garbled text appears here, corrupting the screen. ![image](https://github.com/lervag/wiki.vim/assets/25874852/517a5fc9-35f6-412b-af17-db95528dc21c) but `let g:wiki_fzf_pages_opts = '--preview "cat {1}"'` is working: ![image](https://github.com/lervag/wiki.vim/assets/25874852/c12b7b31-68e6-411d-8d04-4e5e53b6ccd6) Update: Under windows,...

> My first question is: what is the related configuration here? Is it the one you posted afterwards, i.e. Yes, the related configuration is detailed in the following link: https://github.com/lervag/wiki.vim/issues/365#issuecomment-2153863133....

Thanks! I've upgraded the plugin and performed the same tests on Windows 10 Pro: 1. gVim 9.1 with fzf: It is now functioning properly (there were errors before the update,...

> Do you have `shellslash` enabled? Yes, I have `shellslash` enabled. > `:echo g:__test` 1. Add `vim.g.__test = entry` above the `return {....` in line 72. 2. Restart nvim. 3....

> Can you check if you have the same problem if you disable shellslash? Disable shellslash, and test with `:set shellslash?`, display `noshellslash`. 1. Add `vim.g.__test = entry` above the...

> I assume my suggested solution to apply the `vim.fn.tr()` function also does not help? It does not help.

After the update, it is now functioning properly! Thanks!