sandwich
sandwich
@est7 应该是cncor的版本问题。我的cnocr版本2.2.1,python版本3.8,自己测试后可以试试以下的方法: 将workflow包里的ocr.py中的cnocr_ocr方法做如下修改 ```python def cnocr_ocr(pic_path): from cnocr import CnOcr ocr = CnOcr() res = ocr.ocr(pic_path) for val in res: print(val['text']) ```
i have the same question
I used Ctrl + y or trigger `coc#pum#confrim()` completed `sout [LS]`, appeared **SSystem.out.println({cursor});** 😭
> Facing the same issue. maybe, try this solution. https://github.com/neoclide/coc-java/issues/218#issuecomment-1278411350
@linhanwang @Rider-kuuga me too, did you solved this question? 😭
> @codebysandwich basically, I try not to use lsp snippets. i use snippets plugin called coc-snippet now. To avoid the suggest window auto show the lsp provided snippets one the...
Ventura 13.2.1 Release still has the issue :(, alfred affected too.
@arctic-penguin i use @ceuk 's config in lualine it's working :) -- lualine config ```lua local function breadcrumbs() local items = vim.b.coc_nav local t = {''} for k,v in ipairs(items)...
@moieo @yuki-yano i find this problem too :( this is my solution: 1. filter nil ```lua local items = vim.b.coc_nav if items then -- do something end ``` 2. `coc-nvim`...
this my breadcrumbs function: ```lua vim.cmd([[hi Folder guifg=#e5c07b hi WinbarItem guifg=#959DA5]]) local function breadcrumbs() local filename = vim.fn.expand('%:t') local foldername = vim.fn.expand('%:p:h:t') local icon, color = require('nvim-web-devicons').get_icon_color(filename) vim.cmd('hi WinbarFileIcon guifg='...