comparison runtime/doc/todo.txt @ 500:4772a5e3f9fa v7.0138

updated for version 7.0138
author vimboss
date Mon, 29 Aug 2005 22:25:38 +0000
parents 08012a1ff8d4
children ce2181d14aa0
comparison
equal deleted inserted replaced
499:08012a1ff8d4 500:4772a5e3f9fa
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Aug 25 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Aug 29
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
29 29
30 *known-bugs* 30 *known-bugs*
31 -------------------- Known bugs and current work ----------------------- 31 -------------------- Known bugs and current work -----------------------
32 32
33 Spelling: 33 Spelling:
34 - Use 'wrapscan' for "[s" and "]s"?
35
36 - Is there a way to avoid compound IDs taking two utf-8 bytes?
37
38 - Make COMPOUNDMIN 3 characters instead of 3 bytes.
39
40 - Check support of flags of two characters, numbers (comma separated) and HUH. 34 - Check support of flags of two characters, numbers (comma separated) and HUH.
41 When using many compound flags, does regexp still work? 35 When using many compound flags, does regexp still work?
42 36
37 - "zg" doesn't work for Thai?
38
43 - Compound word is accepted if nr of words is <= COMPOUNDMAX OR nr of 39 - Compound word is accepted if nr of words is <= COMPOUNDMAX OR nr of
44 syllables <= COMPOUNDSYLMAX. Specify AND in the affix file? 40 syllables <= COMPOUNDSYLMAX. Specify AND in the affix file?
45
46 - ONLYINCOMPOUND -> NEEDCOMPOUND (also used for affix? or use "needcomp"
47 after affix)
48 41
49 - COMPOUNDMAX -> COMPOUNDWORDMAX? 42 - COMPOUNDMAX -> COMPOUNDWORDMAX?
50 43
51 - Support flags on a suffix. Used for second level affixes. 44 - Support flags on a suffix. Used for second level affixes.
52 The flags may also be used for compounding. Default is an OR mechanism with 45 The flags may also be used for compounding. Default is an OR mechanism with
53 the flags of the word. Adding "compset" on the affixes means the compound 46 the flags of the word. Adding "compset" on the affixes means the compound
54 flags of the word are not used. 47 flags of the word are not used.
55 Instead of "SFX a 0 add/FLAGS ." we could use "SFX a 0 add . /FLAGS". 48 Instead of "SFX a 0 add/FLAGS ." we could use "SFX a 0 add . /FLAGS".
49
50 - NEEDCOMPOUND also used for affix? Or use "needcomp" after affix?
56 51
57 - Do we need a flag for the rule that when compounding is done the following 52 - Do we need a flag for the rule that when compounding is done the following
58 word doesn't have a capital after a word character, even for Onecap words? 53 word doesn't have a capital after a word character, even for Onecap words?
59 54
60 - Also see tklspell: http://tkltrans.sourceforge.net/ 55 - Also see tklspell: http://tkltrans.sourceforge.net/
1480 - Add mnemonics from RFC1345 longer than two characters. 1475 - Add mnemonics from RFC1345 longer than two characters.
1481 Support CTRL-K _{mnemonic}_ 1476 Support CTRL-K _{mnemonic}_
1482 7 In "-- INSERT (lang) --" show the name of the keymap used instead of 1477 7 In "-- INSERT (lang) --" show the name of the keymap used instead of
1483 "lang". (Ilya Dogolazky) 1478 "lang". (Ilya Dogolazky)
1484 - Make 'langmap' accept multi-byte characters. 1479 - Make 'langmap' accept multi-byte characters.
1480 - Make 'breakat' accept multi-byte characters. Problem: can't use a lookup
1481 table anymore (breakat_flags[]).
1482 Simplistic solution: when 'formatoptions' contains "m" also break a line
1483 at a multi-byte character >= 0x100.
1485 - Do we need the reverse of 'keymap', like 'langmap' but with files and 1484 - Do we need the reverse of 'keymap', like 'langmap' but with files and
1486 multi-byte characters? E.g., when using a Russian keyboard. 1485 multi-byte characters? E.g., when using a Russian keyboard.
1487 - Add the possibility to enter mappings which are used whenever normal text 1486 - Add the possibility to enter mappings which are used whenever normal text
1488 could be entered. E.g., for "f" command. But not in Normal mode. Sort 1487 could be entered. E.g., for "f" command. But not in Normal mode. Sort
1489 of opposite of 'langmap'. Use ":tmap" command? 1488 of opposite of 'langmap'. Use ":tmap" command?