Skip to content

Commit

Permalink
handle ruby statement after assign operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Chen Bin committed Mar 26, 2018
1 parent 20270ab commit 304f221
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion evil-matchit-ruby.el
Expand Up @@ -32,7 +32,8 @@
(require 'evil-matchit-sdk)

(defvar evilmi-ruby-extract-keyword-howtos
'(("^[ \t]*\\([a-z]+\\)\\( .*\\| *\\)$" 1)
'(("^[ \t]*[^ \t=]+[ \t]*=[ \t]*\\([a-z]+\\)\\( .*\\| *\\)$" 1)
("^[ \t]*\\([a-z]+\\)\\( .*\\| *\\)$" 1)
("^.* \\(do\\) |[a-z0-9A-Z_, ]+|$" 1)
("^.* \\(do\\) *$" 1)
("^.* \\(end\\)\\..*$" 1)
Expand Down

0 comments on commit 304f221

Please sign in to comment.