comparison runtime/doc/cmdline.txt @ 16610:1eaf34420bb3

Update runtime files commit https://github.com/vim/vim/commit/a6c27c47ddf081859659d7de1caec675147e466b Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 9 19:16:22 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Thu, 09 May 2019 19:30:06 +0200
parents 0e473e9e70c2
children 2704c4e3e20a
comparison
equal deleted inserted replaced
16609:175385d2d3d9 16610:1eaf34420bb3
1 *cmdline.txt* For Vim version 8.1. Last change: 2019 May 05 1 *cmdline.txt* For Vim version 8.1. Last change: 2019 May 07
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
25 1. Command-line editing *cmdline-editing* 25 1. Command-line editing *cmdline-editing*
26 26
27 Normally characters are inserted in front of the cursor position. You can 27 Normally characters are inserted in front of the cursor position. You can
28 move around in the command-line with the left and right cursor keys. With the 28 move around in the command-line with the left and right cursor keys. With the
29 <Insert> key, you can toggle between inserting and overstriking characters. 29 <Insert> key, you can toggle between inserting and overstriking characters.
30 {Vi: can only alter the last character in the line}
31 30
32 Note that if your keyboard does not have working cursor keys or any of the 31 Note that if your keyboard does not have working cursor keys or any of the
33 other special keys, you can use ":cnoremap" to define another key for them. 32 other special keys, you can use ":cnoremap" to define another key for them.
34 For example, to define tcsh style editing keys: *tcsh-style* > 33 For example, to define tcsh style editing keys: *tcsh-style* >
35 :cnoremap <C-A> <Home> 34 :cnoremap <C-A> <Home>