From 61ffe8ba5a02e7d125987c927347468bc190d5dd Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Sun, 8 Jan 2017 21:34:29 +0900 Subject: [PATCH] Update the documentation --- README.md | 3 +++ doc/neosnippet.txt | 2 ++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 731fe43..2f14943 100644 --- a/README.md +++ b/README.md @@ -102,11 +102,14 @@ can use the following keys: ```vim " Plugin key-mappings. +" Note: It must be "imap" and "smap". It uses mappings. imap (neosnippet_expand_or_jump) smap (neosnippet_expand_or_jump) xmap (neosnippet_expand_target) " SuperTab like snippets behavior. +" Note: It must be "imap" and "smap". It uses mappings. +imap (neosnippet_expand_or_jump) "imap " \ pumvisible() ? "\" : " \ neosnippet#expandable_or_jumpable() ? diff --git a/doc/neosnippet.txt b/doc/neosnippet.txt index 789efae..c50ce39 100755 --- a/doc/neosnippet.txt +++ b/doc/neosnippet.txt @@ -384,11 +384,13 @@ neosnippet#get_snippets_directory() EXAMPLES *neosnippet-examples* > " Plugin key-mappings. + " Note: It must be "imap" and "smap". It uses mappings. imap (neosnippet_expand_or_jump) smap (neosnippet_expand_or_jump) xmap (neosnippet_expand_target) " SuperTab like snippets' behavior. + " Note: It must be "imap" and "smap". It uses mappings. "imap " \ pumvisible() ? "\" : " \ neosnippet#expandable_or_jumpable() ?