From my .vimrc, getting:
line 16:
E319: Sorry, the command is not available in this version: filetype on
line 17:
E319: Sorry, the command is not available in this version: filetype plugin on
line 18:
E319: Sorry, the command is not available in this version: filetype indent on
line 21:
E319: Sorry, the command is not available in this version: syntax on
line 45:
E319: Sorry, the command is not available in this version: match ExtraWhitespace /\s\+$/
line 46:
E319: Sorry, the command is not available in this version: autocmd BufWinEnter * match ExtraWhitespace /\s\+$/
line 47:
E319: Sorry, the command is not available in this version: autocmd InsertEnter * match ExtraWhitespace /\s\+\%#\@<!$/
line 48:
E319: Sorry, the command is not available in this version: autocmd InsertLeave * match ExtraWhitespace /\s\+$/
line 49:
E319: Sorry, the command is not available in this version: autocmd BufWinLeave * call clearmatches()
I can remove the lines, but I would rather know what I am really missing or need upgrading that is causing this as this file worked for me before.
vim-tinypackage is installed by default, which does not include thevim-runtimepackage. I fixed my E319's by installing the more bloatedvimpackage, which hasvim-runtimeas a dependency. – NovaDenizen Jun 07 '16 at 15:16vimwasn't installed, butviwas. After installingvimeverything worked. – Jelmer Nov 02 '16 at 22:19:versiondoesn't say anything about GUI and installing -gui-commmon or -runtime doesn't fix the problem, it was on~/.vimrc. – Pablo Bianchi Feb 05 '18 at 15:59