我想在我的 emacs 模式下使用 python 样式注释

I want python style comments in my emacs mode

我正在为我自己的语言制作一个 emacs 模式,我的语言有 python 个评论,

例子

func hello_world()
    printh("Hello, World") # this prints hello world
end 

在此示例中,我希望 # 之后的所有内容都改变颜色,例如评论。

现在,我能够弄清楚如何在 emacs 中突出显示 c/c++ 类型的评论,但我无法理解如何突出显示 python 类型的评论

// this comment will be highlighted 
# but I want this type of comment to be highlighted

在语法高亮定义中使用以下内容:

("#.*" . font-lock-comment-face)