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*