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
"." is a valid constituent of qualified identifiers, e.g., Data.List.map, so shouldn't it have symbol-constituent syntax?
This has the side effect that (thing-at-point 'symbol) (which is emacs-standard) doesn't quite work correctly: when placed on a qualified identifier, it selects only the unqualified identifier or a part of the module name (e.g., map or Data or List).
Is this intentional, or a bug?
The text was updated successfully, but these errors were encountered:
"." is a valid constituent of qualified identifiers, e.g.,
Data.List.map
, so shouldn't it have symbol-constituent syntax?This has the side effect that
(thing-at-point 'symbol)
(which is emacs-standard) doesn't quite work correctly: when placed on a qualified identifier, it selects only the unqualified identifier or a part of the module name (e.g.,map
orData
orList
).Is this intentional, or a bug?
The text was updated successfully, but these errors were encountered: