From 991d0442a577bd63c74596932eaba09be2407b56 Mon Sep 17 00:00:00 2001 From: Michael Sanders Date: Sun, 3 May 2009 14:57:39 -0400 Subject: [PATCH] updated documentation w/r/t --- doc/snipMate.txt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/snipMate.txt b/doc/snipMate.txt index fbe196e..22c4601 100644 --- a/doc/snipMate.txt +++ b/doc/snipMate.txt @@ -198,6 +198,10 @@ The ResetSnippets() function removes all snippets from memory. This is useful to put at the top of a snippet setup file for if you would like to |:source| it multiple times. + *list-snippets* *i_CTRL-R_* +If you would like to see what snippets are available, simply type +in the current buffer to show a list via |popupmenu-completion|. + ============================================================================== SETTINGS *snipMate-settings* *g:snips_author* @@ -219,12 +223,12 @@ can remap it easily in the two lines it's defined in the 'after' directory under 'plugin/snipMate.vim'. For instance, to change the trigger key to shift-tab, just change this: > - ino =ExpandSnippet() - snor i=ExpandSnippet() + ino =TriggerSnippet() + snor i=TriggerSnippet() to this: > - ino =ExpandSnippet() - snor i=ExpandSnippet() + ino =TriggerSnippet() + snor i=TriggerSnippet() ============================================================================== FEATURES *snipMate-features* @@ -242,7 +246,6 @@ snipMate.vim has the following features among others: - (New) File-based snippets are supported. - (New) Triggers after non-word delimiters are expanded, e.g. "foo" in "bar.foo". - - (New) Nested snippets are possible. ============================================================================== DISADVANTAGES *snipMate-disadvantages*