comparison runtime/doc/pattern.txt @ 14372:2a4a2dc35c55

Update runtime files. commit https://github.com/vim/vim/commit/a9604e61451707b38fdcb088fbfaeea2b922fef6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 21 05:56:22 2018 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sat, 21 Jul 2018 06:00:09 +0200
parents 1174611ad715
children 2f7e67dd088c
comparison
equal deleted inserted replaced
14371:2fb503a18f12 14372:2a4a2dc35c55
290 The WORD may contain any non-blanks (<Tab>s and/or <Space>s). 290 The WORD may contain any non-blanks (<Tab>s and/or <Space>s).
291 Note that if you type with ten fingers, the characters are easy to remember: 291 Note that if you type with ten fingers, the characters are easy to remember:
292 the "#" is under your left hand middle finger (search to the left and up) and 292 the "#" is under your left hand middle finger (search to the left and up) and
293 the "*" is under your right hand middle finger (search to the right and down). 293 the "*" is under your right hand middle finger (search to the right and down).
294 (this depends on your keyboard layout though). 294 (this depends on your keyboard layout though).
295
296 *E956*
297 In very rare cases a regular expression is used recursively. This can happen
298 when executing a pattern takes a long time and when checkig for messages on
299 channels a callback is invoked that also uses a pattern or an autocommand is
300 triggered. In most cases this should be fine, but if a pattern is in use when
301 it's used again it fails. Usually this means there is something wrong with
302 the pattern.
295 303
296 ============================================================================== 304 ==============================================================================
297 2. The definition of a pattern *search-pattern* *pattern* *[pattern]* 305 2. The definition of a pattern *search-pattern* *pattern* *[pattern]*
298 *regular-expression* *regexp* *Pattern* 306 *regular-expression* *regexp* *Pattern*
299 *E76* *E383* *E476* 307 *E76* *E383* *E476*