I want to make Caps lock key behave or act as Enter key, only insert mode. In lua.
Asked
Active
Viewed 408 times
1 Answers
0
Linux? Maybe you can try this:
vim.cmd[[
au InsertEnter * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Escape'
au InsertLeave * silent! !xmodmap -e 'clear Lock' -e 'keycode 0x42 = Caps_Lock'
]]
This question(How to map CAPS LOCK key in VIM?) may be same as yours.

Allen Liu
- 19
- 1