Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion evil-common.el
Original file line number Diff line number Diff line change
Expand Up @@ -1703,7 +1703,7 @@ WORD is a sequence of non-whitespace characters
'[^\\n\\r\\t\\f ]', or an empty line matching ^$."
(evil-forward-nearest count
#'(lambda (&optional cnt)
(evil-forward-chars "^\n\r\t\f " cnt))
(evil-forward-chars evil-bigword cnt))
#'forward-evil-empty-line))

(defun forward-evil-symbol (&optional count)
Expand Down
2 changes: 1 addition & 1 deletion evil-vars.el
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ selected. Possible values are `evil-word' or `evil-WORD'."
:type 'symbol
:group 'evil)

(defcustom evil-bigword "^ \t\r\n"
(defcustom evil-bigword "^ \f\t\r\n"
"The set of characters to be interpreted as WORD boundaries.
This is enclosed with square brackets and used as a regular
expression. By default, whitespace characters are considered
Expand Down