File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -1061,22 +1061,23 @@ given a prefix arg."
1061
1061
(with-current-buffer (help-buffer )
1062
1062
(if results
1063
1063
(loop for result in results
1064
- do (insert ident
1064
+ do (insert (propertize ident 'face '((:inherit font-lock-type-face
1065
+ :underline t )))
1065
1066
" is defined in "
1066
1067
(let ((module (cadr (assoc 'module result))))
1067
1068
(if module
1068
1069
(concat module " " )
1069
1070
" " ))
1070
1071
(cadr (assoc 'package result))
1071
1072
" \n\n " )
1072
- do (let ((type (cadr (assoc 'type results ))))
1073
+ do (let ((type (cadr (assoc 'type result ))))
1073
1074
(when type
1074
- (haskell-fontify-as-mode type 'haskell-mode )
1075
- " \n\n " ))
1075
+ (insert ( haskell-fontify-as-mode type 'haskell-mode )
1076
+ " \n " ) ))
1076
1077
do (let ((args (cadr (assoc 'type results))))
1077
1078
(loop for arg in args
1078
1079
do (insert arg " \n " ))
1079
- " \n " )
1080
+ ( insert " \n " ) )
1080
1081
do (insert (cadr (assoc 'documentation result)))
1081
1082
do (insert " \n\n " ))
1082
1083
(insert " No results for " ident)))))))
You can’t perform that action at this time.
0 commit comments