Vim – Some Commands Not Working in Vim

vim

I am new to Vim. I'm following these tutorials to help me learn to use it.

But some of my commands are not working, for example:

Capital W.
f followed by a character. (To move to next same char.)

Why is this happening and how can I get these commands to work?

Best Answer

this may be because by default Ubuntu has a cut down version of vim called vim-tiny and many commands don't work in vim-tiny. To get full functionality you need to install vim. You can install vim with following command

sudo apt-get install vim

Try these commands after installing vim and let me know if you still have problems.

Related Question