You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't think the . or the : should be in here, since they have special meaning on fennel, not being part of keyword symbols.
This ends up messsing with the word jumping mechanism:
(print some-table.some-field.some-sub-field)
;; ^ the cursor is here;; upon pressing `w`:
(print some-table.some-field.some-sub-field)
;; the cursor is here ^
And also the completion mechanism:
(my-table.some_field)
(my-table:some_method)
(my-table+--------------------+;; I want my-table, some_field or some_method, not pairs of them!
|my-table.some_field |
|my-table:some_method|
+--------------------+
The text was updated successfully, but these errors were encountered:
Currently this plugin has:
I don't think the
.
or the:
should be in here, since they have special meaning on fennel, not being part of keyword symbols.This ends up messsing with the word jumping mechanism:
And also the completion mechanism:
The text was updated successfully, but these errors were encountered: