No camera in Vim

2025-09-02 published | 2025-09-22 edited

I found that when I press Enter key on the keyboard in Vim, it actually prints  instead of jumping to next line. To “fix” this:

sudo sed -i 's/KP_Enter/Return/' /usr/share/X11/xkb/symbols/keypad

Or, thanks to Gulo, update the ~/.vimrc:

map!   <CR>
go back | CC0 1.0