-2

Haskell: ctrl/cmd-r for data and type definitions

Karl Smeltzer 12 years ago 0
It would be quite nice if the "go to symbol" functionality accessed via cmd/ctrl-r would also locate data and type definitions in Haskell. Discarding complicated language extensions, I think it would be possible to just look for code of the form:
data name1 = ...
type name2 = ...
newtype name3 = ...