comparison runtime/evim.vim @ 15729:fe57e4f0eac1

Update runtime files. commit https://github.com/vim/vim/commit/314dd79cac2adc10304212d1980d23ecf6782cfc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 3 15:27:20 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Feb 2019 15:30:09 +0100
parents 34c8ec888122
children cd68a630f0d0
comparison
equal deleted inserted replaced
15728:479381bd1728 15729:fe57e4f0eac1
1 " Vim script for Evim key bindings 1 " Vim script for Evim key bindings
2 " Maintainer: Bram Moolenaar <Bram@vim.org> 2 " Maintainer: Bram Moolenaar <Bram@vim.org>
3 " Last Change: 2017 Sep 20 3 " Last Change: 2019 Jan 27
4 4
5 " Don't use Vi-compatible mode. 5 " Don't use Vi-compatible mode.
6 set nocompatible 6 set nocompatible
7 7
8 " Use the mswin.vim script for most mappings 8 " Use the mswin.vim script for most mappings
47 syntax on 47 syntax on
48 set hlsearch 48 set hlsearch
49 nohlsearch 49 nohlsearch
50 endif 50 endif
51 51
52 " Only do this part when compiled with support for autocommands. 52 " Enable file type detection.
53 if has("autocmd") 53 " Use the default filetype settings, so that mail gets 'tw' set to 72,
54 " 'cindent' is on in C files, etc.
55 " Also load indent files, to automatically do language-dependent indenting.
56 filetype plugin indent on
54 57
55 " Enable file type detection. 58 " For all text files set 'textwidth' to 78 characters.
56 " Use the default filetype settings, so that mail gets 'tw' set to 72, 59 au FileType text setlocal tw=78
57 " 'cindent' is on in C files, etc.
58 " Also load indent files, to automatically do language-dependent indenting.
59 filetype plugin indent on
60
61 " For all text files set 'textwidth' to 78 characters.
62 au FileType text setlocal tw=78
63
64 endif " has("autocmd")
65 60
66 " Add optional packages. 61 " Add optional packages.
67 " 62 "
68 " The matchit plugin makes the % command work better, but it is not backwards 63 " The matchit plugin makes the % command work better, but it is not backwards
69 " compatible. 64 " compatible.