|
379 | 379 | :bind ((temporary-goal-column (current-column))
|
380 | 380 | (line-move-visual t)))
|
381 | 381 |
|
382 |
| -;;;###autoload (autoload 'evilem-motion-repeat-find-char-to "evil-easymotion" nil t) |
| 382 | +;;;###autoload (autoload 'evilem-motion-find-char-to "evil-easymotion" nil t) |
383 | 383 | (evilem-make-motion
|
384 |
| - evilem-motion-repeat-find-char-to #'evil-repeat-find-char |
| 384 | + evilem-motion-find-char-to #'evil-repeat-find-char |
385 | 385 | :pre-hook (save-excursion
|
386 | 386 | (setq evil-this-type 'inclusive)
|
387 | 387 | (call-interactively #'evil-find-char-to))
|
388 | 388 | :bind ((evil-cross-lines t)))
|
389 | 389 |
|
390 |
| -;;;###autoload (autoload 'evilem-motion-repeat-find-char-to-backward "evil-easymotion" nil t) |
| 390 | +;;;###autoload (autoload 'evilem-motion-find-char-to-backward "evil-easymotion" nil t) |
391 | 391 | (evilem-make-motion
|
392 |
| - evilem-motion-repeat-find-char-to-backward #'evil-repeat-find-char |
| 392 | + evilem-motion-find-char-to-backward #'evil-repeat-find-char |
393 | 393 | :pre-hook (save-excursion
|
394 | 394 | (setq evil-this-type 'exclusive)
|
395 | 395 | (call-interactively #'evil-find-char-to-backward))
|
396 | 396 | :bind ((evil-cross-lines t)))
|
397 | 397 |
|
398 |
| -;;;###autoload (autoload 'evilem-motion-repeat-find-char "evil-easymotion" nil t) |
| 398 | +;;;###autoload (autoload 'evilem-motion-find-char "evil-easymotion" nil t) |
399 | 399 | (evilem-make-motion
|
400 |
| - evilem-motion-repeat-find-char #'evil-repeat-find-char |
| 400 | + evilem-motion-find-char #'evil-repeat-find-char |
401 | 401 | :pre-hook (save-excursion
|
402 | 402 | (setq evil-this-type 'inclusive)
|
403 | 403 | (call-interactively #'evil-find-char))
|
404 | 404 | :bind ((evil-cross-lines t)))
|
405 | 405 |
|
406 |
| -;;;###autoload (autoload 'evilem-motion-repeat-find-char-backward "evil-easymotion" nil t) |
| 406 | +;;;###autoload (autoload 'evilem-motion-find-char-backward "evil-easymotion" nil t) |
407 | 407 | (evilem-make-motion
|
408 |
| - evilem-motion-repeat-find-char-backward #'evil-repeat-find-char |
| 408 | + evilem-motion-find-char-backward #'evil-repeat-find-char |
409 | 409 | :pre-hook (save-excursion
|
410 | 410 | (setq evil-this-type 'exclusive)
|
411 | 411 | (call-interactively #'evil-find-char-backward))
|
|
492 | 492 | (define-key evilem-map "k" #'evilem-motion-previous-line)
|
493 | 493 | (define-key evilem-map "gj" #'evilem-motion-next-visual-line)
|
494 | 494 | (define-key evilem-map "gk" #'evilem-motion-previous-visual-line)
|
495 |
| -(define-key evilem-map "t" #'evilem-motion-repeat-find-char-to) |
496 |
| -(define-key evilem-map "T" #'evilem-motion-repeat-find-char-to-backward) |
497 |
| -(define-key evilem-map "f" #'evilem-motion-repeat-find-char) |
498 |
| -(define-key evilem-map "F" #'evilem-motion-repeat-find-char-backward) |
| 495 | +(define-key evilem-map "t" #'evilem-motion-find-char-to) |
| 496 | +(define-key evilem-map "T" #'evilem-motion-find-char-to-backward) |
| 497 | +(define-key evilem-map "f" #'evilem-motion-find-char) |
| 498 | +(define-key evilem-map "F" #'evilem-motion-find-char-backward) |
499 | 499 | (define-key evilem-map "[[" #'evilem-motion-backward-section-begin)
|
500 | 500 | (define-key evilem-map "[]" #'evilem-motion-backward-section-end)
|
501 | 501 | (define-key evilem-map "]]" #'evilem-motion-forward-section-begin)
|
|
0 commit comments