diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-03-04 23:34:31 -0800 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-03-04 23:34:31 -0800 |
commit | e45be47a9c984692e7faf4f17f4a0ea248ebfde2 (patch) | |
tree | 97adfe943c5ee92445df60324e8b7fbac25a492a /home | |
parent | 6c5e8a92666626a2b9731d3481693bb48451ed4c (diff) |
fcitx.nvim no issue of leave search switch to pinyin
h-hg/fcitx.nvim is the only one out of the three alternatives that does
not have this issue: after / search with chinese pingyin, then enter,
then in normal mode if I press one key, e.g., k, it will trying to use
chinese pingyin instead of using english
Diffstat (limited to 'home')
-rw-r--r-- | home/xyz/.config/nvim/init.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/home/xyz/.config/nvim/init.vim b/home/xyz/.config/nvim/init.vim index 2c36cddf..d1b4501a 100644 --- a/home/xyz/.config/nvim/init.vim +++ b/home/xyz/.config/nvim/init.vim @@ -23,8 +23,12 @@ Plug 'tinted-theming/base16-vim' " use latest vim-markdown "Plug 'tpope/vim-markdown' " alternatives: h-hg/fcitx.nvim, rlue/vim-barbaric, lilydjwg/fcitx.vim +" h-hg/fcitx.nvim is the only one out of the three alternatives that does not +" have this issue: after / search with chinese pingyin, then enter, then in +" normal mode if I press one key, e.g., k, it will trying to use chinese +" pingyin instead of using english if executable('fcitx5') - Plug 'rlue/vim-barbaric' + Plug 'h-hg/fcitx.nvim' endif " alternatives: 'thinca/vim-ref' with 'eiiches/vim-ref-info', 'HiPhish/info.vim', 'alx741/vinfo' Plug 'https://gitlab.com/HiPhish/info.vim.git' |