comparison runtime/doc/develop.txt @ 481:66080ac5dab7 v7.0130

updated for version 7.0130
author vimboss
date Mon, 15 Aug 2005 21:41:48 +0000
parents 03b3684919e3
children 52e76e2b5b65
comparison
equal deleted inserted replaced
480:bf5ba8a0cdee 481:66080ac5dab7
1 *develop.txt* For Vim version 7.0aa. Last change: 2005 Jun 13 1 *develop.txt* For Vim version 7.0aa. Last change: 2005 Aug 14
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
121 121
122 VIM IS... MAINTAINABLE *design-maintain* 122 VIM IS... MAINTAINABLE *design-maintain*
123 123
124 - The source code should not become a mess. It should be reliable code. 124 - The source code should not become a mess. It should be reliable code.
125 - Use the same layout in all files to make it easy to read |coding-style|. 125 - Use the same layout in all files to make it easy to read |coding-style|.
126 - Use comments in a useful way! 126 - Use comments in a useful way! Quoting the function name and argument names
127 is NOT useful. Do explain what they are for.
127 - Porting to another platform should be made easy, without having to change 128 - Porting to another platform should be made easy, without having to change
128 too much platform-independent code. 129 too much platform-independent code.
129 - Use the object-oriented spirit: Put data and code together. Minimize the 130 - Use the object-oriented spirit: Put data and code together. Minimize the
130 knowledge spread to other parts of the code. 131 knowledge spread to other parts of the code.
131 132