commit 14d0753e97e7db7ee70284f78cc3dee27bdcfb32
parent 9b5a7966ff813d88ffe74a728e5fb97d35c6319a
Author: Luka Perkov <luka.perkov@sartura.hr>
Date: Mon, 8 Jun 2015 00:15:51 +0200
Merge pull request #1348 from FlorianFieber/vim
vim: Fix editing crontabs with crontab -e
Diffstat:
3 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/utils/vim/Makefile b/utils/vim/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=vim
PKG_VERSION:=7.4
-PKG_RELEASE:=2
+PKG_RELEASE:=3
VIMVER:=74
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
diff --git a/utils/vim/files/vimrc b/utils/vim/files/vimrc
@@ -9,3 +9,4 @@ set linebreak " don't wrap words by default
set textwidth=0 " don't wrap lines by default
set ruler " show the cursor position all the time
+set backupskip+=/etc/crontabs.* " fix crontab -e
diff --git a/utils/vim/files/vimrc.full b/utils/vim/files/vimrc.full
@@ -9,6 +9,8 @@ set linebreak " don't wrap words by default
set textwidth=0 " don't wrap lines by default
set ruler " show the cursor position all the time
+set backupskip+=/etc/crontabs.* " fix crontab -e
+
if filereadable(expand("$VIMRUNTIME/syntax/synload.vim"))
syntax on
endif