This repository has been archived by the owner on Oct 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
The primary author of vim-autoclose is Thiago dos Santos Alves | ||
<[email protected]>, who may be found online at | ||
<http://thiagoalves.org>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. | ||
|