Mercurial > vim
annotate runtime/doc/develop.txt @ 12351:4e61b77cd96f v8.0.1055
patch 8.0.1055: bufline test hangs on MS-Windows
commit https://github.com/vim/vim/commit/11aa62f8f949bb590b4d7792a334885fba5e4137
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Sep 4 22:56:01 2017 +0200
patch 8.0.1055: bufline test hangs on MS-Windows
Problem: Bufline test hangs on MS-Windows.
Solution: Avoid message for writing file. Source shared.vim when running
test individually.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 04 Sep 2017 23:00:05 +0200 |
parents | 4f7081eb1e26 |
children | 30f9ebe3e602 |
rev | line source |
---|---|
11914 | 1 *develop.txt* For Vim version 8.0. Last change: 2017 Jul 31 |
7 | 2 |
3 | |
4 VIM REFERENCE MANUAL by Bram Moolenaar | |
5 | |
6 | |
7 Development of Vim. *development* | |
8 | |
9 This text is important for those who want to be involved in further developing | |
10 Vim. | |
11 | |
12 1. Design goals |design-goals| | |
13 2. Coding style |coding-style| | |
14 3. Design decisions |design-decisions| | |
15 4. Assumptions |design-assumptions| | |
16 | |
17 See the file README.txt in the "src" directory for an overview of the source | |
18 code. | |
19 | |
20 Vim is open source software. Everybody is encouraged to contribute to help | |
21 improving Vim. For sending patches a context diff "diff -c" is preferred. | |
4358 | 22 Also see http://vim.wikia.com/wiki/How_to_make_and_submit_a_patch. |
7 | 23 |
24 ============================================================================== | |
25 1. Design goals *design-goals* | |
26 | |
27 Most important things come first (roughly). | |
28 | |
29 Note that quite a few items are contradicting. This is intentional. A | |
30 balance must be found between them. | |
31 | |
32 | |
33 VIM IS... VI COMPATIBLE *design-compatible* | |
34 | |
35 First of all, it should be possible to use Vim as a drop-in replacement for | |
36 Vi. When the user wants to, he can use Vim in compatible mode and hardly | |
37 notice any difference with the original Vi. | |
38 | |
39 Exceptions: | |
40 - We don't reproduce obvious Vi bugs in Vim. | |
41 - There are different versions of Vi. I am using Version 3.7 (6/7/85) as a | |
42 reference. But support for other versions is also included when possible. | |
43 The Vi part of POSIX is not considered a definitive source. | |
44 - Vim adds new commands, you cannot rely on some command to fail because it | |
45 didn't exist in Vi. | |
46 - Vim will have a lot of features that Vi doesn't have. Going back from Vim | |
47 to Vi will be a problem, this cannot be avoided. | |
48 - Some things are hardly ever used (open mode, sending an e-mail when | |
49 crashing, etc.). Those will only be included when someone has a good reason | |
50 why it should be included and it's not too much work. | |
51 - For some items it is debatable whether Vi compatibility should be | |
52 maintained. There will be an option flag for these. | |
53 | |
54 | |
55 VIM IS... IMPROVED *design-improved* | |
56 | |
57 The IMproved bits of Vim should make it a better Vi, without becoming a | |
58 completely different editor. Extensions are done with a "Vi spirit". | |
59 - Use the keyboard as much as feasible. The mouse requires a third hand, | |
60 which we don't have. Many terminals don't have a mouse. | |
61 - When the mouse is used anyway, avoid the need to switch back to the | |
62 keyboard. Avoid mixing mouse and keyboard handling. | |
63 - Add commands and options in a consistent way. Otherwise people will have a | |
64 hard time finding and remembering them. Keep in mind that more commands and | |
65 options will be added later. | |
66 - A feature that people do not know about is a useless feature. Don't add | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
67 obscure features, or at least add hints in documentation that they exist. |
7 | 68 - Minimize using CTRL and other modifiers, they are more difficult to type. |
69 - There are many first-time and inexperienced Vim users. Make it easy for | |
70 them to start using Vim and learn more over time. | |
71 - There is no limit to the features that can be added. Selecting new features | |
72 is one based on (1) what users ask for, (2) how much effort it takes to | |
73 implement and (3) someone actually implementing it. | |
74 | |
75 | |
76 VIM IS... MULTI PLATFORM *design-multi-platform* | |
77 | |
78 Vim tries to help as many users on as many platforms as possible. | |
79 - Support many kinds of terminals. The minimal demands are cursor positioning | |
80 and clear-screen. Commands should only use key strokes that most keyboards | |
81 have. Support all the keys on the keyboard for mapping. | |
82 - Support many platforms. A condition is that there is someone willing to do | |
83 Vim development on that platform, and it doesn't mean messing up the code. | |
84 - Support many compilers and libraries. Not everybody is able or allowed to | |
85 install another compiler or GUI library. | |
86 - People switch from one platform to another, and from GUI to terminal | |
87 version. Features should be present in all versions, or at least in as many | |
88 as possible with a reasonable effort. Try to avoid that users must switch | |
89 between platforms to accomplish their work efficiently. | |
90 - That a feature is not possible on some platforms, or only possible on one | |
91 platform, does not mean it cannot be implemented. [This intentionally | |
92 contradicts the previous item, these two must be balanced.] | |
93 | |
94 | |
95 VIM IS... WELL DOCUMENTED *design-documented* | |
96 | |
97 - A feature that isn't documented is a useless feature. A patch for a new | |
98 feature must include the documentation. | |
99 - Documentation should be comprehensive and understandable. Using examples is | |
100 recommended. | |
101 - Don't make the text unnecessarily long. Less documentation means that an | |
102 item is easier to find. | |
103 | |
104 | |
105 VIM IS... HIGH SPEED AND SMALL IN SIZE *design-speed-size* | |
106 | |
107 Using Vim must not be a big attack on system resources. Keep it small and | |
108 fast. | |
109 - Computers are becoming faster and bigger each year. Vim can grow too, but | |
110 no faster than computers are growing. Keep Vim usable on older systems. | |
111 - Many users start Vim from a shell very often. Startup time must be short. | |
112 - Commands must work efficiently. The time they consume must be as small as | |
113 possible. Useful commands may take longer. | |
114 - Don't forget that some people use Vim over a slow connection. Minimize the | |
115 communication overhead. | |
116 - Items that add considerably to the size and are not used by many people | |
117 should be a feature that can be disabled. | |
118 - Vim is a component among other components. Don't turn it into a massive | |
119 application, but have it work well together with other programs. | |
120 | |
121 | |
122 VIM IS... MAINTAINABLE *design-maintain* | |
123 | |
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|. | |
481 | 126 - Use comments in a useful way! Quoting the function name and argument names |
127 is NOT useful. Do explain what they are for. | |
7 | 128 - Porting to another platform should be made easy, without having to change |
129 too much platform-independent code. | |
130 - Use the object-oriented spirit: Put data and code together. Minimize the | |
131 knowledge spread to other parts of the code. | |
132 | |
133 | |
134 VIM IS... FLEXIBLE *design-flexible* | |
135 | |
136 Vim should make it easy for users to work in their preferred styles rather | |
137 than coercing its users into particular patterns of work. This can be for | |
138 items with a large impact (e.g., the 'compatible' option) or for details. The | |
139 defaults are carefully chosen such that most users will enjoy using Vim as it | |
140 is. Commands and options can be used to adjust Vim to the desire of the user | |
141 and its environment. | |
142 | |
143 | |
144 VIM IS... NOT *design-not* | |
145 | |
11914 | 146 - Vim is not a shell or an Operating System. It does provide a terminal |
147 window, in which you can run a shell or debugger. E.g. to be able to do | |
148 this over an ssh connection. But if you don't need a text editor with that | |
149 it is out of scope (use something like screen or tmux instead). | |
7 | 150 A satirical way to say this: "Unlike Emacs, Vim does not attempt to include |
151 everything but the kitchen sink, but some people say that you can clean one | |
152 with it. ;-)" | |
722 | 153 To use Vim with gdb see: http://www.agide.org and http://clewn.sf.net. |
7 | 154 - Vim is not a fancy GUI editor that tries to look nice at the cost of |
155 being less consistent over all platforms. But functional GUI features are | |
156 welcomed. | |
157 | |
158 ============================================================================== | |
159 2. Coding style *coding-style* | |
160 | |
161 These are the rules to use when making changes to the Vim source code. Please | |
162 stick to these rules, to keep the sources readable and maintainable. | |
163 | |
164 This list is not complete. Look in the source code for more examples. | |
165 | |
166 | |
167 MAKING CHANGES *style-changes* | |
168 | |
169 The basic steps to make changes to the code: | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
170 1. Get the code from github. That makes it easier to keep your changed |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
171 version in sync with the main code base (it may be a while before your |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
172 changes will be included). You do need to spend some time learning git, |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
173 it's not the most user friendly tool. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
174 2. Adjust the documentation. Doing this first gives you an impression of how |
7 | 175 your changes affect the user. |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
176 3. Make the source code changes. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
177 4. Check ../doc/todo.txt if the change affects any listed item. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
178 5. Make a patch with "git diff". You can also create a pull request on |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
179 github, but it's the diff that matters. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
180 6. Make a note about what changed, preferably mentioning the problem and the |
10548
74effdaa369e
Updated runtime files.
Christian Brabandt <cb@256bit.org>
parents:
10198
diff
changeset
|
181 solution. Send an email to the |vim-dev| maillist with an explanation and |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
182 include the diff. Or create a pull request on github. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
183 |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
184 |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
185 C COMPILER *style-compiler* |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
186 |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
187 The minimal C compiler version supported is C89, also known as ANSI C. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
188 Later standards don't add much and C89 is the widest supported. |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
189 |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
190 One restriction that this implies: no // comments, only /* comments */. |
7 | 191 |
192 | |
193 USE OF COMMON FUNCTIONS *style-functions* | |
194 | |
195 Some functions that are common to use, have a special Vim version. Always | |
196 consider using the Vim version, because they were introduced with a reason. | |
197 | |
198 NORMAL NAME VIM NAME DIFFERENCE OF VIM VERSION | |
199 free() vim_free() Checks for freeing NULL | |
200 malloc() alloc() Checks for out of memory situation | |
201 malloc() lalloc() Like alloc(), but has long argument | |
202 strcpy() STRCPY() Includes cast to (char *), for char_u * args | |
203 strchr() vim_strchr() Accepts special characters | |
204 strrchr() vim_strrchr() Accepts special characters | |
205 isspace() vim_isspace() Can handle characters > 128 | |
1240 | 206 iswhite() vim_iswhite() Only TRUE for tab and space |
711 | 207 memcpy() mch_memmove() Handles overlapped copies |
208 bcopy() mch_memmove() Handles overlapped copies | |
7 | 209 memset() vim_memset() Uniform for all systems |
210 | |
211 | |
212 NAMES *style-names* | |
213 | |
214 Function names can not be more than 31 characters long (because of VMS). | |
215 | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
216 Don't use "delete" or "this" as a variable name, C++ doesn't like it. |
7 | 217 |
218 Because of the requirement that Vim runs on as many systems as possible, we | |
219 need to avoid using names that are already defined by the system. This is a | |
220 list of names that are known to cause trouble. The name is given as a regexp | |
221 pattern. | |
222 | |
223 is.*() POSIX, ctype.h | |
224 to.*() POSIX, ctype.h | |
225 | |
226 d_.* POSIX, dirent.h | |
227 l_.* POSIX, fcntl.h | |
228 gr_.* POSIX, grp.h | |
229 pw_.* POSIX, pwd.h | |
230 sa_.* POSIX, signal.h | |
231 mem.* POSIX, string.h | |
232 str.* POSIX, string.h | |
233 wcs.* POSIX, string.h | |
234 st_.* POSIX, stat.h | |
235 tms_.* POSIX, times.h | |
236 tm_.* POSIX, time.h | |
237 c_.* POSIX, termios.h | |
238 MAX.* POSIX, limits.h | |
239 __.* POSIX, system | |
240 _[A-Z].* POSIX, system | |
241 E[A-Z0-9]* POSIX, errno.h | |
242 | |
1121 | 243 .*_t POSIX, for typedefs. Use .*_T instead. |
7 | 244 |
245 wait don't use as argument to a function, conflicts with types.h | |
246 index shadows global declaration | |
247 time shadows global declaration | |
248 new C++ reserved keyword | |
249 try Borland C++ doesn't like it to be used as a variable. | |
250 | |
3281 | 251 clear Mac curses.h |
252 echo Mac curses.h | |
253 instr Mac curses.h | |
254 meta Mac curses.h | |
255 newwin Mac curses.h | |
256 nl Mac curses.h | |
257 overwrite Mac curses.h | |
258 refresh Mac curses.h | |
259 scroll Mac curses.h | |
260 typeahead Mac curses.h | |
261 | |
7 | 262 basename() GNU string function |
263 dirname() GNU string function | |
264 get_env_value() Linux system function | |
265 | |
266 | |
267 VARIOUS *style-various* | |
268 | |
502 | 269 Typedef'ed names should end in "_T": > |
270 typedef int some_T; | |
7 | 271 Define'ed names should be uppercase: > |
272 #define SOME_THING | |
273 Features always start with "FEAT_": > | |
274 #define FEAT_FOO | |
275 | |
276 Don't use '\"', some compilers can't handle it. '"' works fine. | |
277 | |
278 Don't use: | |
279 #if HAVE_SOME | |
280 Some compilers can't handle that and complain that "HAVE_SOME" is not defined. | |
281 Use | |
282 #ifdef HAVE_SOME | |
283 or | |
284 #if defined(HAVE_SOME) | |
285 | |
286 | |
287 STYLE *style-examples* | |
288 | |
289 General rule: One statement per line. | |
290 | |
291 Wrong: if (cond) a = 1; | |
292 | |
293 OK: if (cond) | |
294 a = 1; | |
295 | |
296 Wrong: while (cond); | |
297 | |
298 OK: while (cond) | |
299 ; | |
300 | |
301 Wrong: do a = 1; while (cond); | |
302 | |
303 OK: do | |
304 a = 1; | |
305 while (cond); | |
306 | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
307 Wrong: if (cond) { |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
308 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
309 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
310 } else { |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
311 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
312 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
313 } |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
314 |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
315 OK: if (cond) |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
316 { |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
317 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
318 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
319 } |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
320 else |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
321 { |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
322 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
323 cmd; |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
324 } |
7 | 325 |
7876
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
326 Use ANSI (new style) function declarations with the return type on a separate |
93f747af7b58
commit https://github.com/vim/vim/commit/5e9b2fa9bb0e6061cf18457c173cd141a5dc9c92
Christian Brabandt <cb@256bit.org>
parents:
7707
diff
changeset
|
327 indented line. |
7 | 328 |
329 Wrong: int function_name(int arg1, int arg2) | |
330 | |
331 OK: /* | |
332 * Explanation of what this function is used for. | |
333 * | |
334 * Return value explanation. | |
335 */ | |
336 int | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
337 function_name( |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
338 int arg1, /* short comment about arg1 */ |
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
5763
diff
changeset
|
339 int arg2) /* short comment about arg2 */ |
7 | 340 { |
341 int local; /* comment about local */ | |
342 | |
343 local = arg1 * arg2; | |
344 | |
345 | |
346 | |
347 SPACES AND PUNCTUATION *style-spaces* | |
348 | |
349 No space between a function name and the bracket: | |
350 | |
351 Wrong: func (arg); | |
352 OK: func(arg); | |
353 | |
354 Do use a space after if, while, switch, etc. | |
355 | |
356 Wrong: if(arg) for(;;) | |
357 OK: if (arg) for (;;) | |
358 | |
359 Use a space after a comma and semicolon: | |
360 | |
361 Wrong: func(arg1,arg2); for (i = 0;i < 2;++i) | |
362 OK: func(arg1, arg2); for (i = 0; i < 2; ++i) | |
363 | |
364 Use a space before and after '=', '+', '/', etc. | |
365 | |
366 Wrong: var=a*5; | |
367 OK: var = a * 5; | |
368 | |
369 In general: Use empty lines to group lines of code together. Put a comment | |
2033
de5a43c5eedc
Update documentation files.
Bram Moolenaar <bram@zimbu.org>
parents:
1702
diff
changeset
|
370 just above the group of lines. This makes it easier to quickly see what is |
7 | 371 being done. |
372 | |
373 OK: /* Prepare for building the table. */ | |
374 get_first_item(); | |
375 table_idx = 0; | |
376 | |
377 /* Build the table */ | |
378 while (has_item()) | |
379 table[table_idx++] = next_item(); | |
380 | |
381 /* Finish up. */ | |
382 cleanup_items(); | |
383 generate_hash(table); | |
384 | |
385 ============================================================================== | |
386 3. Design decisions *design-decisions* | |
387 | |
388 Folding | |
389 | |
390 Several forms of folding should be possible for the same buffer. For example, | |
391 have one window that shows the text with function bodies folded, another | |
392 window that shows a function body. | |
393 | |
394 Folding is a way to display the text. It should not change the text itself. | |
395 Therefore the folding has been implemented as a filter between the text stored | |
396 in a buffer (buffer lines) and the text displayed in a window (logical lines). | |
397 | |
398 | |
399 Naming the window | |
400 | |
401 The word "window" is commonly used for several things: A window on the screen, | |
402 the xterm window, a window inside Vim to view a buffer. | |
403 To avoid confusion, other items that are sometimes called window have been | |
404 given another name. Here is an overview of the related items: | |
405 | |
406 screen The whole display. For the GUI it's something like 1024x768 | |
407 pixels. The Vim shell can use the whole screen or part of it. | |
408 shell The Vim application. This can cover the whole screen (e.g., | |
409 when running in a console) or part of it (xterm or GUI). | |
410 window View on a buffer. There can be several windows in Vim, | |
411 together with the command line, menubar, toolbar, etc. they | |
412 fit in the shell. | |
413 | |
414 | |
236 | 415 Spell checking *develop-spell* |
416 | |
417 When spell checking was going to be added to Vim a survey was done over the | |
418 available spell checking libraries and programs. Unfortunately, the result | |
419 was that none of them provided sufficient capabilities to be used as the spell | |
420 checking engine in Vim, for various reasons: | |
421 | |
422 - Missing support for multi-byte encodings. At least UTF-8 must be supported, | |
423 so that more than one language can be used in the same file. | |
323 | 424 Doing on-the-fly conversion is not always possible (would require iconv |
425 support). | |
236 | 426 - For the programs and libraries: Using them as-is would require installing |
323 | 427 them separately from Vim. That's mostly not impossible, but a drawback. |
236 | 428 - Performance: A few tests showed that it's possible to check spelling on the |
429 fly (while redrawing), just like syntax highlighting. But the mechanisms | |
625 | 430 used by other code are much slower. Myspell uses a hashtable, for example. |
431 The affix compression that most spell checkers use makes it slower too. | |
300 | 432 - For using an external program like aspell a communication mechanism would |
433 have to be setup. That's complicated to do in a portable way (Unix-only | |
434 would be relatively simple, but that's not good enough). And performance | |
435 will become a problem (lots of process switching involved). | |
236 | 436 - Missing support for words with non-word characters, such as "Etten-Leur" and |
437 "et al.", would require marking the pieces of them OK, lowering the | |
438 reliability. | |
439 - Missing support for regions or dialects. Makes it difficult to accept | |
440 all English words and highlight non-Canadian words differently. | |
441 - Missing support for rare words. Many words are correct but hardly ever used | |
442 and could be a misspelled often-used word. | |
323 | 443 - For making suggestions the speed is less important and requiring to install |
444 another program or library would be acceptable. But the word lists probably | |
445 differ, the suggestions may be wrong words. | |
7 | 446 |
625 | 447 |
448 Spelling suggestions *develop-spell-suggestions* | |
449 | |
450 For making suggestions there are two basic mechanisms: | |
451 1. Try changing the bad word a little bit and check for a match with a good | |
452 word. Or go through the list of good words, change them a little bit and | |
453 check for a match with the bad word. The changes are deleting a character, | |
454 inserting a character, swapping two characters, etc. | |
455 2. Perform soundfolding on both the bad word and the good words and then find | |
456 matches, possibly with a few changes like with the first mechanism. | |
457 | |
458 The first is good for finding typing mistakes. After experimenting with | |
459 hashtables and looking at solutions from other spell checkers the conclusion | |
460 was that a trie (a kind of tree structure) is ideal for this. Both for | |
461 reducing memory use and being able to try sensible changes. For example, when | |
462 inserting a character only characters that lead to good words need to be | |
463 tried. Other mechanisms (with hashtables) need to try all possible letters at | |
464 every position in the word. Also, a hashtable has the requirement that word | |
465 boundaries are identified separately, while a trie does not require this. | |
466 That makes the mechanism a lot simpler. | |
467 | |
468 Soundfolding is useful when someone knows how the words sounds but doesn't | |
469 know how it is spelled. For example, the word "dictionary" might be written | |
470 as "daktonerie". The number of changes that the first method would need to | |
471 try is very big, it's hard to find the good word that way. After soundfolding | |
472 the words become "tktnr" and "tkxnry", these differ by only two letters. | |
473 | |
474 To find words by their soundfolded equivalent (soundalike word) we need a list | |
475 of all soundfolded words. A few experiments have been done to find out what | |
476 the best method is. Alternatives: | |
477 1. Do the sound folding on the fly when looking for suggestions. This means | |
478 walking through the trie of good words, soundfolding each word and | |
479 checking how different it is from the bad word. This is very efficient for | |
480 memory use, but takes a long time. On a fast PC it takes a couple of | |
481 seconds for English, which can be acceptable for interactive use. But for | |
482 some languages it takes more than ten seconds (e.g., German, Catalan), | |
483 which is unacceptable slow. For batch processing (automatic corrections) | |
1197 | 484 it's too slow for all languages. |
625 | 485 2. Use a trie for the soundfolded words, so that searching can be done just |
486 like how it works without soundfolding. This requires remembering a list | |
487 of good words for each soundfolded word. This makes finding matches very | |
488 fast but requires quite a lot of memory, in the order of 1 to 10 Mbyte. | |
489 For some languages more than the original word list. | |
490 3. Like the second alternative, but reduce the amount of memory by using affix | |
491 compression and store only the soundfolded basic word. This is what Aspell | |
492 does. Disadvantage is that affixes need to be stripped from the bad word | |
493 before soundfolding it, which means that mistakes at the start and/or end | |
494 of the word will cause the mechanism to fail. Also, this becomes slow when | |
495 the bad word is quite different from the good word. | |
496 | |
497 The choice made is to use the second mechanism and use a separate file. This | |
498 way a user with sufficient memory can get very good suggestions while a user | |
499 who is short of memory or just wants the spell checking and no suggestions | |
500 doesn't use so much memory. | |
501 | |
502 | |
503 Word frequency | |
504 | |
505 For sorting suggestions it helps to know which words are common. In theory we | |
506 could store a word frequency with the word in the dictionary. However, this | |
507 requires storing a count per word. That degrades word tree compression a lot. | |
508 And maintaining the word frequency for all languages will be a heavy task. | |
509 Also, it would be nice to prefer words that are already in the text. This way | |
510 the words that appear in the specific text are preferred for suggestions. | |
511 | |
512 What has been implemented is to count words that have been seen during | |
513 displaying. A hashtable is used to quickly find the word count. The count is | |
514 initialized from words listed in COMMON items in the affix file, so that it | |
515 also works when starting a new file. | |
516 | |
517 This isn't ideal, because the longer Vim is running the higher the counts | |
1197 | 518 become. But in practice it is a noticeable improvement over not using the word |
625 | 519 count. |
520 | |
7 | 521 ============================================================================== |
522 4. Assumptions *design-assumptions* | |
523 | |
524 Size of variables: | |
525 char 8 bit signed | |
526 char_u 8 bit unsigned | |
625 | 527 int 32 or 64 bit signed (16 might be possible with limited features) |
528 unsigned 32 or 64 bit unsigned (16 as with ints) | |
7 | 529 long 32 or 64 bit signed, can hold a pointer |
530 | |
531 Note that some compilers cannot handle long lines or strings. The C89 | |
532 standard specifies a limit of 509 characters. | |
533 | |
534 vim:tw=78:ts=8:ft=help:norl: |