-1

I want to make Caps lock key behave or act as Enter key, only insert mode. In lua.

romainl
  • 186,200
  • 21
  • 280
  • 313
YoBro_29
  • 139
  • 1
  • 6

1 Answers1

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