annotate runtime/evim.vim @ 28843:cd68a630f0d0

Update runtime files and translations Commit: https://github.com/vim/vim/commit/3f32a5f1601ab2b0eba0caad00d4c26fb86a02a2 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 12 20:34:15 2022 +0100 Update runtime files and translations
author Bram Moolenaar <Bram@vim.org>
date Thu, 12 May 2022 21:45:05 +0200
parents fe57e4f0eac1
children 4027cefc2aab
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim script for Evim key bindings
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
28843
cd68a630f0d0 Update runtime files and translations
Bram Moolenaar <Bram@vim.org>
parents: 15729
diff changeset
3 " Last Change: 2022 May 10
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
4
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
5 " Don't use Vi-compatible mode.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6 set nocompatible
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 " Use the mswin.vim script for most mappings
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9 source <sfile>:p:h/mswin.vim
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10
28843
cd68a630f0d0 Update runtime files and translations
Bram Moolenaar <Bram@vim.org>
parents: 15729
diff changeset
11 " Allow for using CTRL-Q in Insert mode to quit Vim.
cd68a630f0d0 Update runtime files and translations
Bram Moolenaar <Bram@vim.org>
parents: 15729
diff changeset
12 inoremap <C-Q> <C-O>:confirm qall<CR>
cd68a630f0d0 Update runtime files and translations
Bram Moolenaar <Bram@vim.org>
parents: 15729
diff changeset
13
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
14 " Vim is in Insert mode by default
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
15 set insertmode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
16
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 " Make a buffer hidden when editing another one
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18 set hidden
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 " Make cursor keys ignore wrapping
2220
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
21 inoremap <silent> <Down> <C-R>=pumvisible() ? "\<lt>Down>" : "\<lt>C-O>gj"<CR>
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
22 inoremap <silent> <Up> <C-R>=pumvisible() ? "\<lt>Up>" : "\<lt>C-O>gk"<CR>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
23
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
24 " CTRL-F does Find dialog instead of page forward
2220
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
25 noremap <silent> <C-F> :promptfind<CR>
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
26 vnoremap <silent> <C-F> y:promptfind <C-R>"<CR>
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
27 onoremap <silent> <C-F> <C-C>:promptfind<CR>
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
28 inoremap <silent> <C-F> <C-O>:promptfind<CR>
b1c70c500de4 Found a way to make the MS-Windows installer wait for the uninstaller to
Bram Moolenaar <bram@vim.org>
parents: 818
diff changeset
29 cnoremap <silent> <C-F> <C-C>:promptfind<CR>
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
30
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
31
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
32 set backspace=2 " allow backspacing over everything in insert mode
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
33 set autoindent " always set autoindenting on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
34 if has("vms")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
35 set nobackup " do not keep a backup file, use versions instead
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
36 else
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
37 set backup " keep a backup file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
38 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
39 set history=50 " keep 50 lines of command line history
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
40 set ruler " show the cursor position all the time
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
41 set incsearch " do incremental searching
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
42 set mouse=a " always use the mouse
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
43
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
44 " Don't use Ex mode, use Q for formatting
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
45 map Q gq
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
46
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
47 " Switch syntax highlighting on, when the terminal has colors
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
48 " Highlight the last used search pattern on the next search command.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
49 if &t_Co > 2 || has("gui_running")
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
50 syntax on
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
51 set hlsearch
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
52 nohlsearch
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
53 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
54
15729
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
55 " Enable file type detection.
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
56 " Use the default filetype settings, so that mail gets 'tw' set to 72,
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
57 " 'cindent' is on in C files, etc.
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
58 " Also load indent files, to automatically do language-dependent indenting.
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
59 filetype plugin indent on
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
60
15729
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
61 " For all text files set 'textwidth' to 78 characters.
fe57e4f0eac1 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 12559
diff changeset
62 au FileType text setlocal tw=78
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
63
9669
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
64 " Add optional packages.
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
65 "
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
66 " The matchit plugin makes the % command work better, but it is not backwards
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
67 " compatible.
12559
34c8ec888122 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 9669
diff changeset
68 " The ! means the package won't be loaded right away but when plugins are
34c8ec888122 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 9669
diff changeset
69 " loaded during initialization.
9669
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
70 if has('syntax') && has('eval')
12559
34c8ec888122 Update runtime files
Christian Brabandt <cb@256bit.org>
parents: 9669
diff changeset
71 packadd! matchit
9669
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
72 endif
284b4eb307fc commit https://github.com/vim/vim/commit/8c08b5b569e2a9e9f63dea514591ecfa2d3bb392
Christian Brabandt <cb@256bit.org>
parents: 2220
diff changeset
73
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
74 " vim: set sw=2 :