diff --git a/README.md b/README.md index 16904b2bbd7..cc4a4c68c54 100644 --- a/README.md +++ b/README.md @@ -538,7 +538,7 @@ Based on [vim-easymotion](https://github.com/easymotion/vim-easymotion) and conf | vim.easymotionDimBackground | Whether to dim other text while markers are visible. | Boolean | true | | vim.easymotionMarkerFontWeight | The font weight used for the marker text. | String | 'bold' | | vim.easymotionKeys | The characters used for jump marker name | String | 'hklyuiopnm,qwertzxcvbasdgjf;' | -| vim.easymotionJumpToAnywhereRegex | Custom regex to match for JumpToAnywhere motion (analogous to `Easymotion_re_anywhere`). Example setting (which also matches start & end of line, as well as Javascript comments in addition to the regular behavior (note the double escaping required): ^\\s\*. | \\b[A-Za-z0-9] | [A-Za-z0-9]\\b | +| vim.easymotionJumpToAnywhereRegex | Custom regex to match for JumpToAnywhere motion (analogous to `Easymotion_re_anywhere`) | String | `\b[A-Za-z0-9]\|[A-Za-z0-9]\b\|_.\|#.\|[a-z][A-Z]` | Once easymotion is active, initiate motions using the following commands. After you initiate the motion, text decorators/markers will be displayed and you can press the keys displayed to jump to that position. `leader` is configurable and is `\` by default.