From 6f50fd6c35234313e2423cc0ac45223fcea58ba9 Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Tue, 9 Dec 2014 22:48:34 -0500 Subject: Remove VMS remnants --- runtime/vimrc_example.vim | 29 ++++++++++++----------------- 1 file changed, 12 insertions(+), 17 deletions(-) (limited to 'runtime/vimrc_example.vim') diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim index 3175711aa1..6b234459e2 100644 --- a/runtime/vimrc_example.vim +++ b/runtime/vimrc_example.vim @@ -1,13 +1,12 @@ " An example for a vimrc file. " -" Maintainer: Bram Moolenaar -" Last change: 2014 Feb 05 +" Maintainer: Bram Moolenaar +" Last change: 2014 Feb 05 " " To use it, copy it to " for Unix: ~/.vimrc -" for Amiga: s:.vimrc -" for MS-DOS and Win32: $VIM\_vimrc -" for OpenVMS: sys$login:.vimrc +" for Amiga: s:.vimrc +" for MS-DOS and Win32: $VIM\_vimrc " When started as "evim", evim.vim will already have done these settings. if v:progname =~? "evim" @@ -21,16 +20,12 @@ set nocompatible " allow backspacing over everything in insert mode set backspace=indent,eol,start -if has("vms") - set nobackup " do not keep a backup file, use versions instead -else - set backup " keep a backup file (restore to previous version) - set undofile " keep an undo file (undo changes after closing) -endif -set history=50 " keep 50 lines of command line history -set ruler " show the cursor position all the time -set showcmd " display incomplete commands -set incsearch " do incremental searching +set backup " keep a backup file (restore to previous version) +set undofile " keep an undo file (undo changes after closing) +set history=50 " keep 50 lines of command line history +set ruler " show the cursor position all the time +set showcmd " display incomplete commands +set incsearch " do incremental searching " For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries " let &guioptions = substitute(&guioptions, "t", "", "g") @@ -84,7 +79,7 @@ if has("autocmd") else - set autoindent " always set autoindenting on + set autoindent " always set autoindenting on endif " has("autocmd") @@ -93,5 +88,5 @@ endif " has("autocmd") " Only define it when not defined already. if !exists(":DiffOrig") command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_ | diffthis - \ | wincmd p | diffthis + \ | wincmd p | diffthis endif -- cgit From a62fe49d3caa40b8a6efb6528cce725f4dffa78a Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Wed, 10 Dec 2014 00:07:19 -0500 Subject: Remove Amiga remnants Notes regarding the removal of specific items: - Aztec C: only on the Amiga. - mch_check_win(): doesn't exist anymore. - Comment in ex_cmds.c: It seems the context for this comment was removed, but the comment was inadvertantly left alone. --- runtime/vimrc_example.vim | 1 - 1 file changed, 1 deletion(-) (limited to 'runtime/vimrc_example.vim') diff --git a/runtime/vimrc_example.vim b/runtime/vimrc_example.vim index 6b234459e2..11656f2d5d 100644 --- a/runtime/vimrc_example.vim +++ b/runtime/vimrc_example.vim @@ -5,7 +5,6 @@ " " To use it, copy it to " for Unix: ~/.vimrc -" for Amiga: s:.vimrc " for MS-DOS and Win32: $VIM\_vimrc " When started as "evim", evim.vim will already have done these settings. -- cgit