如何使用 emacs 对 python 文档字符串进行拼写检查?

发布于 2024-08-24 22:54:59 字数 143 浏览 11 评论 0原文

我想在我的 Python 代码的文档字符串上运行拼写检查器,如果可能的话,在 emacs 中运行。

我发现 ispell-check-comments 设置可用于仅对代码中的注释进行拼写检查,但我无法仅针对文档字符串,这是相当特定于 python 的东西。

I'd like to run a spell checker on the docstrings of my Python code, if possible from within emacs.

I've found the ispell-check-comments setting which can be used to spell check only comments in code, but I was not able to target only the docstrings which are a fairly python-specific thing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖不如嘢 2024-08-31 22:54:59

我建议您尝试flyspell-mode。 使用类似以下内容:

(add-hook 'python-mode-hook 'flyspell-prog-mode)

您可以在 Emacs 配置中

I recommend you to try flyspell-mode. You could use something like:

(add-hook 'python-mode-hook 'flyspell-prog-mode)

in your Emacs configuration.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文