@@ -148,9 +148,10 @@ NORMAL-MODE
148148(previous) match. Additional matches are highlighted until the cursor is
149149moved. Works across multiple lines.
150150
151- If a | language-mapping | is activated, Sneak waits for keymapped sequences as
152- needed and searches for the keymapped result as expected. (Requires Vim 7.3+)
153- 'keymap' 'iminsert' | mbyte-keymap |
151+ If a | language-mapping | ('keymap' ) is active Sneak waits for keymapped
152+ sequences as needed and searches for the keymapped result as expected. You
153+ probably want to set | g:sneak#target_labels | to labels that make sense for
154+ your preferred 'keymap' .
154155
155156[count] s enters | sneak-vertical-scope | mode.
156157
@@ -263,66 +264,65 @@ g:sneak#t_reset = 1
263264
264265 Note: Defaults to 0 if you mapped f (or t) to any | sneak-mappings | .
265266
266- 0 : Pressing | f | (or | t | ) will NOT clear the last Sneak search. So you could
267- define different maps for <Plug> Sneak_; or <Plug> Sneak_, and still
268- use ; and , for | f | and | t | as usual.
267+ 0: Pressing | f | (or | t | ) will NOT clear the last Sneak search. So you could
268+ define different maps for <Plug> Sneak_; or <Plug> Sneak_, and still
269+ use ; and , for | f | and | t | as usual.
269270
270- 1 : Pressing | f | (or | t | ) causes Sneak to "reset" so that | ; | and | , | will apply
271- to the last f (or t) motion instead of the last s or S. This makes it
272- possible to use ; and , for all three motions (f, t, and s).
271+ 1: Pressing | f | (or | t | ) causes Sneak to "reset" so that | ; | and | , | will apply
272+ to the last f (or t) motion instead of the last s or S. This makes it
273+ possible to use ; and , for all three motions (f, t, and s).
273274
274- Note: if f (or t) was already mapped by you or a plugin, Sneak will
275- not override the existing mapping unless you explicitly set f_reset
276- (or t_reset). This means Sneak will not be able to reset ; or , when
277- you invoke f or t. See the README.md FAQ regarding "f-enhancement"
278- plugins.
275+ Note: if f (or t) was already mapped by you or a plugin, Sneak will
276+ not override the existing mapping unless you explicitly set f_reset
277+ (or t_reset). This means Sneak will not be able to reset ; or , when
278+ you invoke f or t. See the README.md FAQ regarding "f-enhancement"
279+ plugins.
279280
280281g:sneak#s_next = 0
281282
282- 0 : Disable | sneak-clever-s | .
283+ 0: Disable | sneak-clever-s | .
283284
284- 1 : Enable | sneak-clever-s | . It works like this: immediately after
285- invoking Sneak, press "s" _again_ to go to the next match, or "S" for
286- the previous match. This behavior persists until you move the cursor.
287- Note: You can still use | ; | and | , | as usual.
285+ 1: Enable | sneak-clever-s | . It works like this: immediately after
286+ invoking Sneak, press "s" _again_ to go to the next match, or "S" for
287+ the previous match. This behavior persists until you move the cursor.
288+ Note: You can still use | ; | and | , | as usual.
288289
289290g:sneak#absolute_dir = 0
290291
291- 0 : Relative direction. | ; | goes to the next match in the direction of the
292- initial s/S invocation and | , | goes in the opposite direction.
292+ 0: Relative direction. | ; | goes to the next match in the direction of the
293+ initial s/S invocation and | , | goes in the opposite direction.
293294
294- 1 : Absolute direction. Repeat via | ; | or | , | always goes forwards or
295- backwards respectively.
296- Note: With | sneak-clever-s | , s and S behave the same as | ; | and | , | .
295+ 1: Absolute direction. Repeat via | ; | or | , | always goes forwards or
296+ backwards respectively.
297+ Note: With | sneak-clever-s | , s and S behave the same as | ; | and | , | .
297298
298299g:sneak#use_ic_scs = 0
299300
300- 0 : Always case-sensitive
301+ 0: Always case-sensitive
301302
302- 1 : Case sensitivity is determined by 'ignorecase' and 'smartcase' .
303+ 1: Case sensitivity is determined by 'ignorecase' and 'smartcase' .
303304
304305g:sneak#map_netrw = 1
305306
306- 0 : Don't do any special handling of "file manager" buffers (such as
307- | netrw | or filebeagle).
307+ 0: Don't do any special handling of "file manager" buffers (such as
308+ | netrw | or filebeagle).
308309
309- 1 : Set up Sneak mappings (s and S) in "file manager" buffers (| :Ex | ,
310- | :Vex | , filebeagle) and replace the default buffer-local s and
311- S mappings with <leader> s and <leader> S.
310+ 1: Set up Sneak mappings (s and S) in "file manager" buffers (| :Ex | ,
311+ | :Vex | , filebeagle) and replace the default buffer-local s and
312+ S mappings with <leader> s and <leader> S.
312313
313314g:sneak#label = 0
314315
315- 0 : Disable | sneak-label-mode | .
316+ 0: Disable | sneak-label-mode | .
316317
317- 1 : Enable | sneak-label-mode | if the Vim | +conceal | feature is available.
318+ 1: Enable | sneak-label-mode | if the Vim | +conceal | feature is available.
318319
319- *g:sneak#label_esc*
320- g:sneak#label_esc = "\<Space> "
320+ g:sneak#label_esc = "\<Space> " *g:sneak#label_esc*
321321
322322 Exit | sneak-label-mode | as if <Esc> were pressed.
323323 https://github.com/justinmk/vim-sneak/issues/122
324324
325- g:sneak#target_labels = ";sftunq/SFGHLTUNRMQZ?0"
325+ g:sneak#target_labels = ";sftunq/SFGHLTUNRMQZ?0" *g:sneak#target_labels*
326326
327327 List of characters used to label the target locations. | sneak-label-mode |
328328
0 commit comments