Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1 | The macros in the maze, hanoi and urm directories can be used to test Vim for |
| 2 | vi compatibility. They have been written for vi to show its unlimited |
| 3 | possibilities. The life macros can be used for performance comparisons. |
| 4 | |
| 5 | hanoi Macros that solve the tower of hanoi problem. |
| 6 | life Macros that run Conway's game of life. |
| 7 | maze Macros that solve a maze (amazing!). |
| 8 | urm Macros that simulate a simple computer: "Universal Register Machine" |
| 9 | |
| 10 | |
| 11 | The other files contain some handy utilities. They also serve as examples for |
| 12 | how to use Vi and Vim functionality. |
| 13 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 14 | less.sh + less.vim make Vim work like less (or more) |
Bram Moolenaar | 292ad19 | 2005-12-11 21:29:51 +0000 | [diff] [blame] | 15 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 16 | shellmenu.vim menus for editing shell scripts in the GUI version |
Bram Moolenaar | 292ad19 | 2005-12-11 21:29:51 +0000 | [diff] [blame] | 17 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 18 | swapmous.vim swap left and right mouse buttons |
| 19 | |
Bram Moolenaar | 292ad19 | 2005-12-11 21:29:51 +0000 | [diff] [blame] | 20 | editexisting.vim when editing a file that is already edited with |
| 21 | another Vim instance |
| 22 | |
Bram Moolenaar | aedfcbe | 2016-03-25 17:02:51 +0100 | [diff] [blame] | 23 | This one is only for Unix. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 24 | file_select.vim macros that make a handy file selector |
Bram Moolenaar | aedfcbe | 2016-03-25 17:02:51 +0100 | [diff] [blame] | 25 | |
Bram Moolenaar | 2946d02 | 2016-03-28 20:53:08 +0200 | [diff] [blame^] | 26 | The Dvorak support has been moved to an optional package. To load it put this |
| 27 | line in your vimrc file: |
| 28 | packadd! dvorak |
| 29 | |
| 30 | The support for justifying test has been moved to an optional package. To |
| 31 | load it put this line in your vimrc file: |
| 32 | packadd! justify |
| 33 | |
Bram Moolenaar | aedfcbe | 2016-03-25 17:02:51 +0100 | [diff] [blame] | 34 | The matchit plugin has been moved to an optional package. To load it put this |
| 35 | line in your vimrc file: |
Bram Moolenaar | e934e8f | 2016-03-28 20:40:32 +0200 | [diff] [blame] | 36 | packadd! matchit |