From bfda8a26ee4c75c775a78500fed7fbcf4e67f99f Mon Sep 17 00:00:00 2001 From: Pieter Swinkels Date: Sat, 18 May 2024 00:21:55 +0200 Subject: [PATCH] Remove directive formatting from NOTE marker Before this commit, this snippet formatted a NOTE marker as a snippet directive, as `NOTE:`. As `NOTE` isn't a directive, this triggered a directive warning. --- snippets/python-mode/function_docstring | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/python-mode/function_docstring b/snippets/python-mode/function_docstring index 3e66c26fa..1c223839f 100644 --- a/snippets/python-mode/function_docstring +++ b/snippets/python-mode/function_docstring @@ -2,7 +2,7 @@ # name: function_docstring # key: fd # group: definitions -# NOTE: Use minimum indentation, because Emacs 25+ doesn't dedent docstrings. +# NOTE Use minimum indentation, because Emacs 25+ doesn't dedent docstrings. # -- def ${1:name}($2): \"\"\"$3