Closed berhoel closed 2 years ago
Setting python-docstring-keywords still uses old names for the regexps:
python-docstring-keywords
(defvar python-docstring-keywords `((,docstring-field-with-arg-re 1 font-lock-type-face t) (,docstring-field-with-arg-re 2 font-lock-function-name-face t) (,docstring-field-no-arg-re 1 font-lock-type-face t) ;; :foo:`bar`
etc. should be
(defvar python-docstring-keywords `((,python-docstring-field-with-arg-re 1 font-lock-type-face t) (,python-docstring-field-with-arg-re 2 font-lock-function-name-face t) (,python-docstring-field-no-arg-re 1 font-lock-type-face t) ;; :foo:`bar`
I have been bitten by this too. Is any help needed?
@orki Please feel free to submit a PR.
Closing because stale, but still happy to accept a PR / new issue whenever.
Setting
python-docstring-keywords
still uses old names for the regexps:etc. should be