branch: externals/cm-mode
commit f3eaa44d44b2027ef30d8ffcb7faeafe8ba6f6ba
Author: Joost Kremers <[email protected]>
Commit: Joost Kremers <[email protected]>
Improve auto-comment section in the README.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 3fc48a9aa8..ea62b8c90e 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ The commands to delete or substitute text operate on the
region. The command to
If you want to automatically add a comment to every change you make, for
example to keep track of who made the change, you can set the variable
`cm-auto-comment` to the desired text. (Don't include the comment markup
itself.) Once set, every change is automatically commented. If you explicitly
make a comment with `C-c * c`, the value of `cm-auto-comment` is inserted at
the beginning of the comment, followed by a colon and a space.
-The variable `cm-auto-comment` can be set globally through Customize (or with
`setq-default` in your init file). This sets the global value. You can override
this global value in a particular buffer by setting a buffer-local value. There
are essentially two ways to do this: you can use `C-c * C`, which will only set
the value for the current session, or with a file-local (or directory-local)
variable, which makes sure the value is set every time the file is loaded.
(Note: if you use [Pan [...]
+The variable `cm-auto-comment` can be set globally through Customize (or with
`setq-default` in your init file). This sets the global value. You can override
this global value in a particular buffer by setting a buffer-local value. There
are two ways to do this: you can use `C-c * C`, which will only set the value
for the current session, or you can use a file-local (or directory-local)
variable, which makes sure the value is set every time the file is loaded.
(Note: if you use [Pandoc]( [...]
## Navigating changes ##