Small fixes to docs

This commit is contained in:
Giuseppe Rota 2012-02-05 17:20:09 +01:00 committed by Holger Rapp
parent 6c1371ff25
commit 6d79810efb

View File

@ -184,7 +184,7 @@ which file type.
3.4 Warning About Select Mode Mappings *UltiSnips-warning-smappings* 3.4 Warning About Select Mode Mappings *UltiSnips-warning-smappings*
-------------------------------------- --------------------------------------
The help for vim's *mapmode-s* states: > The help for vim's |mapmode-s| states: >
NOTE: Mapping a printable character in Select mode may confuse the user. NOTE: Mapping a printable character in Select mode may confuse the user.
It's better to explicitly use :xmap and :smap for printable characters. Or It's better to explicitly use :xmap and :smap for printable characters. Or
use :sunmap after defining the mapping. use :sunmap after defining the mapping.
@ -192,7 +192,7 @@ The help for vim's *mapmode-s* states: >
But most vim plugins (even the ones shipped with vim) do not adhere to this. But most vim plugins (even the ones shipped with vim) do not adhere to this.
As UltiSnips uses select mode to mark tabstops in snippets for overwriting As UltiSnips uses select mode to mark tabstops in snippets for overwriting
these wrong mappings get in the way. UltiSnips therefore defaults to these wrong mappings get in the way. UltiSnips therefore defaults to
*:sunmap* all mappings for printable characters in select mode. It will not |:sunmap| all mappings for printable characters in select mode. It will not
touch any other mappings, especially not normal, insert or visual mode touch any other mappings, especially not normal, insert or visual mode
mappings. mappings.
@ -204,7 +204,7 @@ this feature. For example >
let g:UltiSnipsMappingsToIgnore = [ "somePlugin", "otherPlugin" ] let g:UltiSnipsMappingsToIgnore = [ "somePlugin", "otherPlugin" ]
will not unmap any mapping that contains the string "somePlugin" or will not unmap any mapping that contains the string "somePlugin" or
"otherPlugin" in its complete definition as listed by *:smap* . "otherPlugin" in its complete definition as listed by |:smap|.
3.5 Functions *UltiSnips-functions* 3.5 Functions *UltiSnips-functions*