diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 0000000..38a5ce5 --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1,4 @@ +The primary author of vim-autoclose is Thiago dos Santos Alves +, who may be found online at +. + diff --git a/INSTALL.txt b/INSTALL.txt new file mode 100644 index 0000000..a3d776a --- /dev/null +++ b/INSTALL.txt @@ -0,0 +1,12 @@ +=========== +INSTALL.txt +=========== + +Put the script into your $VIM/plugin directory and the documentation +into $VIM/doc and type on your vim: + + :helptags $VIM/doc + +You can change $VIM to whatever place your vim can automatically read +plugins and documentations like in your home vim directory. + diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..4cba520 --- /dev/null +++ b/README.txt @@ -0,0 +1,20 @@ +========== +README.txt +========== + + This plugin was born as a personal need to have some little special +features from other editors into my preferred one. The Eclipse IDE editor has +an auto-complete for open-close pair of characters feature that I always +wanted into Vim. + + As soon as you type a character that could have a close pair, Eclipse +automatically puts its pair in front of your cursor, and if you continue to +type and type the close character, Eclipse is smart enough to not insert it +again (it just move your cursor one character forward). + + But the Eclipse editor don't stop there. If you type an "open" character +on any part of your code that should not have a pair completion, it will not +insert the close character for you. + + The AutoClose plugin is an attempt to reproduce this behavior on Vim. +