haddock icon indicating copy to clipboard operation
haddock copied to clipboard

quickjump could emphasize matching class methods

Open aavogt opened this issue 3 years ago • 0 comments

When typing "at" into the quick jump for lens I would like the first entry to be: https://hackage.haskell.org/package/lens-5.1/docs/Control-Lens-Combinators.html#v:at .

Instead the 20th result only names the class

image

I would prefer one of these:

at :: At m => Index m -> Lens' m (Maybe (IxValue m))

class Ixed m => At m where
  at :: Index m -> Lens' m (Maybe (IxValue m))

This is with haddock 2.24.0

aavogt avatar Mar 08 '22 00:03 aavogt