Shougo

Results 574 comments of Shougo

command line history completion with pum.vim https://github.com/Shougo/pum.vim ![スクリーンショット_2021-10-05_17-39-56](https://user-images.githubusercontent.com/41495/135990228-a0c95c07-7a50-4294-8897-a1a59662b3b5.png)

I have implemented terminal completion with deol.nvim. https://github.com/Shougo/deol.nvim Note: This is experimental feature. ![スクリーンショット_2021-10-11_22-28-21](https://user-images.githubusercontent.com/41495/136798285-cd809598-a1d1-42f4-92ff-c4cac0eb372c.png)

![スクリーンショット_2021-10-26_20-20-28](https://user-images.githubusercontent.com/41495/138867894-2823d1a5-10f8-4b05-96bc-bd929c29b552.png) I have implemented horizontal menu support in pum.vim like Emacs ido-mode. ~~Note: neovim only~~

![スクリーンショット_2021-10-28_20-12-57](https://user-images.githubusercontent.com/41495/139245028-a8eeb8d7-7fbf-445f-9f7c-a70b8b4ca5da.png) I have added the horizontal menu support in Vim.

![スクリーンショット_2021-11-20_16-21-38](https://user-images.githubusercontent.com/41495/142718284-5d2f7bb6-d5da-474f-917d-fcdce3a42cdc.png) `fine-cmdline.nvim` integration https://github.com/VonHeikemen/fine-cmdline.nvim

ddc-dictionary completion https://github.com/matsui54/ddc-dictionary ![スクリーンショット_2022-03-24_09-32-44](https://user-images.githubusercontent.com/41495/159818648-7ccb7a24-a8e3-494f-8b25-4f81d009bd6f.png)

Hi, I am deoplete author. I have reproduced the problem. But you can configure it manually. ```vim call deoplete#custom#source('clang2', 'min_pattern_length', 2) ```

You can use deoplete-clangx instead. https://github.com/Shougo/deoplete-clangx

self.clang_path is initialized to `''` in the constructor. And it is set in on_event(). https://github.com/tweekmonster/deoplete-clang2/blob/787dd4dc7eeb5d1bc2fd3cefcf7bd07e48f4a962/rplugin/python3/deoplete/sources/deoplete_clang2.py#L147 If on_event() is not called, it will be `''`. So no surprising.