From 19f984b1655656b2a52d1edee22a5870136d6ae5 Mon Sep 17 00:00:00 2001 From: mattn Date: Thu, 7 Jun 2012 12:55:48 +0900 Subject: [PATCH] update doc. --- doc/zencoding.txt | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/zencoding.txt b/doc/zencoding.txt index cbb8539..e45e20a 100644 --- a/doc/zencoding.txt +++ b/doc/zencoding.txt @@ -29,6 +29,7 @@ Tutorial |zencoding-tutorial| 11. Toggle Comment |zencoding-toggle-comment| 12. Make anchor from URL |zencoding-make-anchor-url| 13. Make quoted text from URL |zencoding-quoted-text-url| + 14. Code Pretty |zencoding-code-pretty| Customize |zencoding-customize| 1. Key Mappings |zencoding-customize-keymappings| 2. Indent Size |zencoding-indent-size| @@ -280,6 +281,24 @@ You should copy this section and create new buffer, paste and write as http://github.com/ < +14. Code Pretty *zencoding-code-pretty* *c* + + Select code block, for example select following code from "int main()". +> +

Writing in C language

+ + int main() { + puts("hello world"); + } +< + Type |c| +> +

Writing in C language

+ + int main() {
+   puts("hello world");
+ }
+< ============================================================================== CUSTOMIZE *zencoding-customize*