From 0b39e635de93ae79db322d6187880239e22c4269 Mon Sep 17 00:00:00 2001 From: "jiangfriend@gmail.com" Date: Sun, 15 Jul 2012 22:50:09 +0800 Subject: [PATCH] add known issues --- README.md | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 629e4c0..df71e6a 100644 --- a/README.md +++ b/README.md @@ -56,12 +56,12 @@ Features input: |'hello' (press ( at |) output: ('hello') - wrap string, only support c style string - input: |'h\\el\'lo' (press ( at |) - output ('h\\ello\'') + wrap string, only support c style string + input: |'h\\el\'lo' (press ( at |) + output ('h\\ello\'') - input: |[foo, bar()] (press ( at |) - output: ([foo, bar()]) + input: |[foo, bar()] (press ( at |) + output: ([foo, bar()]) * Quick jump to closed pair. @@ -234,6 +234,23 @@ TroubleShooting 3. use DEL or x to delete the character insert by plugin. +Known Issues +----------------------- +There are the issues I cannot fix. + +Compatible with Vimwiki - [issue #19](https://github.com/jiangmiao/auto-pairs/issues/19) + + Description: When works with vimwiki `` will output `xx_CR()` + Reason: vimwiki uses `` on mapping `` that auto-pairs cannot expanding. + Solution: add `let g:AutoPairsMapCR = 0` to .vimrc to disable `` mapping. + +Breaks '.' - [issue #3](https://github.com/jiangmiao/auto-pairs/issues/3) + + Description: After entering insert mode and inputing `[hello` then leave insert mode by ``, press '.' will insert 'hello' instead of '[hello]'. + Reason: `[` actually equals `[]\` and \ will break '.' + Solution: none + Contributors ------------ * [camthompson](https://github.com/camthompson) +