comparison runtime/doc/cmdline.txt @ 29193:1e9e9d89f0ee

Update runtime files Commit: https://github.com/vim/vim/commit/d592deb336523a5448779ee3d4bba80334cff1f7 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 17 15:42:40 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Jun 2022 16:45:04 +0200
parents b96ceb97e896
children dc4de65a7fb7
comparison
equal deleted inserted replaced
29192:e4488cf0eff9 29193:1e9e9d89f0ee
1 *cmdline.txt* For Vim version 8.2. Last change: 2022 Apr 29 1 *cmdline.txt* For Vim version 8.2. Last change: 2022 Jun 16
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1216 save the command-line history and read it back later. 1216 save the command-line history and read it back later.
1217 1217
1218 If the 'wildchar' option is set to <Tab>, and the command-line window is used 1218 If the 'wildchar' option is set to <Tab>, and the command-line window is used
1219 for an Ex command, then two mappings will be added to use <Tab> for completion 1219 for an Ex command, then two mappings will be added to use <Tab> for completion
1220 in the command-line window, like this: > 1220 in the command-line window, like this: >
1221 :imap <buffer> <Tab> <C-X><C-V> 1221 :inoremap <buffer> <Tab> <C-X><C-V>
1222 :nmap <buffer> <Tab> a<C-X><C-V> 1222 :nnoremap <buffer> <Tab> a<C-X><C-V>
1223 Note that hitting <Tab> in Normal mode will do completion on the next 1223 Note that hitting <Tab> in Normal mode will do completion on the next
1224 character. That way it works at the end of the line. 1224 character. That way it works at the end of the line.
1225 If you don't want these mappings, disable them with: > 1225 If you don't want these mappings, disable them with: >
1226 au CmdwinEnter [:>] iunmap <Tab> 1226 au CmdwinEnter [:>] iunmap <Tab>
1227 au CmdwinEnter [:>] nunmap <Tab> 1227 au CmdwinEnter [:>] nunmap <Tab>