comparison src/getchar.c @ 13950:741b1feeac9f v8.0.1845

patch 8.0.1845: various comment updates needed, missing white space commit https://github.com/vim/vim/commit/259f26ac2d41ecfb28b82c651b2bfc1edc7c3e29 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 15 22:25:40 2018 +0200 patch 8.0.1845: various comment updates needed, missing white space Problem: Various comment updates needed, missing white space. Solution: Update comments, add white space.
author Christian Brabandt <cb@256bit.org>
date Tue, 15 May 2018 22:30:07 +0200
parents b7ca1a8db3e8
children e124262d435e
comparison
equal deleted inserted replaced
13949:a607f9751fee 13950:741b1feeac9f
4397 } 4397 }
4398 #endif /* FEAT_CMDL_COMPL */ 4398 #endif /* FEAT_CMDL_COMPL */
4399 4399
4400 /* 4400 /*
4401 * Check for an abbreviation. 4401 * Check for an abbreviation.
4402 * Cursor is at ptr[col]. When inserting, mincol is where insert started. 4402 * Cursor is at ptr[col].
4403 * When inserting, mincol is where insert started.
4404 * For the command line, mincol is what is to be skipped over.
4403 * "c" is the character typed before check_abbr was called. It may have 4405 * "c" is the character typed before check_abbr was called. It may have
4404 * ABBR_OFF added to avoid prepending a CTRL-V to it. 4406 * ABBR_OFF added to avoid prepending a CTRL-V to it.
4405 * 4407 *
4406 * Historic vi practice: The last character of an abbreviation must be an id 4408 * Historic vi practice: The last character of an abbreviation must be an id
4407 * character ([a-zA-Z0-9_]). The characters in front of it must be all id 4409 * character ([a-zA-Z0-9_]). The characters in front of it must be all id