editor de configuração para crontab -e, por que usar sempre o vim básico?

2

Ao emitir crontab -e as root , sempre recebi mensagens como a seguinte (parcial), no entanto, executar vim diretamente não tem nenhum problema. $EDITOR foi definido como vim em /root/.bash_profile .

%> sudo crontab -e
Error detected while processing /root/.vimrc:
line    2:
E319: Sorry, the command is not available in this version: autocmd! BufNewFile * silent! 0r ~/.vim/skel/tmpl.%:e
line   20:
E319: Sorry, the command is not available in this version: autocmd VimEnter * set vb t_vb=
line   57:
E518: Unknown option: autochdir
line   65:
E319: Sorry, the command is not available in this version: syn on
line   78:
E538: No mouse support: mouse=a
line   79:
E319: Sorry, the command is not available in this version: filetype plugin indent on
line   87:
E319: Sorry, the command is not available in this version: funct! CommentBlock(comment)
line   88:
    
por daisy 16.10.2011 / 17:01

2 respostas

1

Quando você usa o "comando sudo", o perfil do usuário root não é carregado, use sudo -i e crontab -e .

    
por João Pinto 16.10.2011 / 17:38
0

no ubuntu-14.04, use select-editor escolha "vim-gnome" mas não "vim-basic"

    
por shgy 28.12.2016 / 04:17