mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 19:32:58 +08:00
xkblayout: support ime.nvim (#2682)
Some checks failed
CI / Test (v7.4) (push) Has been cancelled
CI / Test (v8.0.0000) (push) Has been cancelled
CI / Test (v8.1.0000) (push) Has been cancelled
CI / Test (v8.2.0000) (push) Has been cancelled
CI / Test (v8.2.1000) (push) Has been cancelled
CI / Test (v9.0.0000) (push) Has been cancelled
reviewdog / runner / vint (push) Has been cancelled
Some checks failed
CI / Test (v7.4) (push) Has been cancelled
CI / Test (v8.0.0000) (push) Has been cancelled
CI / Test (v8.1.0000) (push) Has been cancelled
CI / Test (v8.2.0000) (push) Has been cancelled
CI / Test (v8.2.1000) (push) Has been cancelled
CI / Test (v9.0.0000) (push) Has been cancelled
reviewdog / runner / vint (push) Has been cancelled
Improve document
This commit is contained in:
parent
02894b6ef4
commit
d25c049e61
|
@ -17,9 +17,13 @@ function! airline#extensions#xkblayout#status()
|
|||
let keyboard_layout = FcitxCurrentIM()
|
||||
elseif has('nvim')
|
||||
try
|
||||
let keyboard_layout = luaeval('require"fcitx5-ui".displayCurrentIM()')
|
||||
let keyboard_layout = luaeval('require"ime".current()')
|
||||
catch /.*/
|
||||
let keyboard_layout = ''
|
||||
try
|
||||
let keyboard_layout = luaeval('require"fcitx5-ui".displayCurrentIM()')
|
||||
catch /.*/
|
||||
let keyboard_layout = ''
|
||||
endtry
|
||||
endtry
|
||||
else
|
||||
let keyboard_layout = ''
|
||||
|
|
|
@ -1775,7 +1775,11 @@ details on how to use it, see e.g. <https://github.com/ierton/xkb-switch>
|
|||
let g:XkbSwitchLib = '/usr/local/lib/libInputSourceSwitcher.dylib'
|
||||
<
|
||||
Linux with fcitx (Install https://github.com/fcitx/fcitx5):
|
||||
Install https://github.com/lilydjwg/fcitx.vim) to get `FcitxCurrentIM()`
|
||||
Install https://github.com/lilydjwg/fcitx.vim to get `FcitxCurrentIM()`
|
||||
or https://github.com/black-desk/fcitx5-ui.nvim to get
|
||||
`luaeval('require"fcitx5-ui".displayCurrentIM()')`
|
||||
or https://github.com/Freed-Wu/ime.nvim to get
|
||||
`luaeval('require"ime".current()')`
|
||||
|
||||
------------------------------------- *airline-xtabline*
|
||||
xtabline <https://github.com/mg979/vim-xtabline>
|
||||
|
|
Loading…
Reference in New Issue
Block a user