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 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 11 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 12 | The other files contain some handy utilities. They also serve as examples for |
| 13 | how to use Vi and Vim functionality. |
| 14 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 15 | less.sh + less.vim make Vim work like less (or more) |
Bram Moolenaar | 292ad19 | 2005-12-11 21:29:51 +0000 | [diff] [blame] | 16 | |
Bram Moolenaar | 292ad19 | 2005-12-11 21:29:51 +0000 | [diff] [blame] | 17 | |
Bram Moolenaar | 2946d02 | 2016-03-28 20:53:08 +0200 | [diff] [blame] | 18 | |
Bram Moolenaar | cf2d8de | 2016-03-28 21:04:37 +0200 | [diff] [blame] | 19 | The following have been moved to an optional package. Add the command to your |
| 20 | vimrc file to use the package: |
Bram Moolenaar | 2946d02 | 2016-03-28 20:53:08 +0200 | [diff] [blame] | 21 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 22 | packadd! dvorak " Dvorak keyboard support; adds mappings |
Bram Moolenaar | cf2d8de | 2016-03-28 21:04:37 +0200 | [diff] [blame] | 23 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 24 | packadd! editexisting " when editing a file that is already edited with |
| 25 | " another Vim instance, go to that Vim instance |
Bram Moolenaar | cf2d8de | 2016-03-28 21:04:37 +0200 | [diff] [blame] | 26 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 27 | packadd! justify " justifying text. |
Bram Moolenaar | cf2d8de | 2016-03-28 21:04:37 +0200 | [diff] [blame] | 28 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 29 | packadd! matchit " makes the % command work better |
Bram Moolenaar | e101204 | 2016-03-28 21:10:49 +0200 | [diff] [blame] | 30 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 31 | packadd! shellmenu " menus for editing shell scripts in the GUI version |
Bram Moolenaar | fead3ac | 2016-03-28 21:26:47 +0200 | [diff] [blame] | 32 | |
Bram Moolenaar | 0b9e4d1 | 2016-03-28 22:05:47 +0200 | [diff] [blame] | 33 | packadd! swapmouse " swap left and right mouse buttons |