diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-07-28 14:22:08 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2020-07-28 15:46:52 -0700 |
commit | a52f36cbb87e0a02e57e039e023eaf52c9b56500 (patch) | |
tree | cc92ac6ce967bb489ba3dc78ad8e7316fc50788f /utils/vim/files | |
parent | 00e6d53c7308a2ff9a0dd44b79a0545abd7fb936 (diff) |
vim: update to 8.2
Removed multibyte options. They must now be enabled.
Refreshed patches.
Commented out autowrite as requested in
https://github.com/openwrt/packages/pull/12177
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'utils/vim/files')
-rw-r--r-- | utils/vim/files/vimrc | 2 | ||||
-rw-r--r-- | utils/vim/files/vimrc.full | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/vim/files/vimrc b/utils/vim/files/vimrc index b8cea2938..d744cfed8 100644 --- a/utils/vim/files/vimrc +++ b/utils/vim/files/vimrc @@ -1,7 +1,7 @@ set showcmd " show (partial) command in status line set showmatch " show matching brackets set incsearch " incremental search -set autowrite " automatically save before commands like :next and :make +"set autowrite " automatically save before commands like :next and :make set nocompatible " use vim defaults instead of 100% vi compatibility set backspace=indent,eol,start " more powerful backspacing set autoindent " always set autoindenting on diff --git a/utils/vim/files/vimrc.full b/utils/vim/files/vimrc.full index 99f737e84..5cd36691a 100644 --- a/utils/vim/files/vimrc.full +++ b/utils/vim/files/vimrc.full @@ -1,7 +1,7 @@ set showcmd " show (partial) command in status line set showmatch " show matching brackets set incsearch " incremental search -set autowrite " automatically save before commands like :next and :make +"set autowrite " automatically save before commands like :next and :make set nocompatible " use Vim defaults instead of 100% vi compatibility set backspace=indent,eol,start " more powerful backspacing set autoindent " always set autoindenting on |