diff options
| author | Tom Dalziel <tom_dl@hotmail.com> | 2022-04-24 23:07:01 +0100 |
|---|---|---|
| committer | Tom Dalziel <33435574+tomdl89@users.noreply.github.com> | 2022-04-25 00:28:05 +0200 |
| commit | f75732de0ca5cae70f17dbc4bf7df03cb4ec491f (patch) | |
| tree | a47311e6decdd44f92749b60d2327ccad6bec4ad /evil-commands.el | |
| parent | 48404a336850a20ed093fcf78539037c17386235 (diff) | |
Add `evil-word-object` & `evil-WORD-object` which stay on line
Fixes #834
Diffstat (limited to 'evil-commands.el')
| -rw-r--r-- | evil-commands.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-commands.el b/evil-commands.el index 545de06..1d88a76 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -1277,7 +1277,7 @@ or line COUNT to the top of the window." (evil-define-text-object evil-inner-word (count &optional beg end type) "Select inner word." - (evil-select-inner-object 'evil-word beg end type count)) + (evil-select-inner-object 'evil-word-object beg end type count)) (evil-define-text-object evil-a-WORD (count &optional beg end type) "Select a WORD." @@ -1285,7 +1285,7 @@ or line COUNT to the top of the window." (evil-define-text-object evil-inner-WORD (count &optional beg end type) "Select inner WORD." - (evil-select-inner-object 'evil-WORD beg end type count)) + (evil-select-inner-object 'evil-WORD-object beg end type count)) (evil-define-text-object evil-a-symbol (count &optional beg end type) "Select a symbol." |
