Do perl documentation lookups case-insensitively, like man

* lisp/progmodes/cperl-mode.el (cperl-perldoc): add -i to the perldoc
command.
This commit is contained in:
Reuben Thomas 2022-10-14 13:30:43 +02:00
parent 271791b55b
commit b175a9fb7e

View file

@ -8323,7 +8323,7 @@ the appropriate statement modifier."
'cperl-short-docs
'variable-documentation))))
(Man-switches "")
(manual-program (if is-func "perldoc -f" "perldoc")))
(manual-program (concat "perldoc -i" (if is-func " -f"))))
(Man-getpage-in-background word)))
;;;###autoload