comparison runtime/doc/todo.txt @ 29:ac33b7c03fac v7.0018

updated for version 7.0018
author vimboss
date Mon, 11 Oct 2004 10:16:09 +0000
parents 404aac550f35
children 41f9fd58cf13
comparison
equal deleted inserted replaced
28:726bdc53fa49 29:ac33b7c03fac
1 *todo.txt* For Vim version 7.0aa. Last change: 2004 Oct 07 1 *todo.txt* For Vim version 7.0aa. Last change: 2004 Oct 10
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
28 be worked on, but only if you sponsor Vim development. See |sponsor|. 28 be worked on, but only if you sponsor Vim development. See |sponsor|.
29 29
30 *known-bugs* 30 *known-bugs*
31 -------------------- Known bugs and current work ----------------------- 31 -------------------- Known bugs and current work -----------------------
32 32
33 Add browsedir(): like browse() but for directories.
34 For GTK it already sort-of works when the default name is empty.
35
36 When ":file" sets the alternate file name and it's empty this doesn't make
37 sense. Could skip it, but would that break scripts that rely on the buffer to
38 exist?
39
40 Folding support for 2html. (Carl Osterwisch, Oct 4) 33 Folding support for 2html. (Carl Osterwisch, Oct 4)
41 How to evaluate an expression in the sandbox? 34 Now diff output!
42 35
43 Aborting at the ATTENTION prompt causes trouble: 36 Aborting at the ATTENTION prompt causes trouble:
44 buffer remains active, nwindows isn't closed (fixed in buffer.c) 37 buffer remains active, nwindows isn't closed (fixed in buffer.c)
45 alternate buffer gets "read error" flag. 38 alternate buffer gets "read error" flag.
46 ":sbuf" and ":ball" leave an empty window behind. 39 ":sbuf" and ":ball" leave an empty window behind.
55 Win32: When the path to a file has Russian characters, ":cd %:p:h" doesn't 48 Win32: When the path to a file has Russian characters, ":cd %:p:h" doesn't
56 work. (Valery Kondakoff) 49 work. (Valery Kondakoff)
57 Solved in os_mswin.c. Add to 6.3? 50 Solved in os_mswin.c. Add to 6.3?
58 51
59 Patch for Win32 textdomain: NAKADAIRA Yukihiro, Sept 17. 52 Patch for Win32 textdomain: NAKADAIRA Yukihiro, Sept 17.
60
61 GTK 2 error message with this sequence (Namsh Oct 7):
62 - start gvim with French locale
63 - set enc=utf-8
64 - :aunmenu *
65 - :unlet did_install_default_menus
66 - :source $VIMRUNTIME/menu.vim
67 53
68 Valencia: executable("xxd.exe") returns true while "!xxd" doesn't work. 54 Valencia: executable("xxd.exe") returns true while "!xxd" doesn't work.
69 Works fine for me. Only in specific environment? 55 Works fine for me. Only in specific environment?
70 56
71 netrw plugin: When coming back to the same directory a scratch buffer appears. 57 netrw plugin: When coming back to the same directory a scratch buffer appears.
369 Also place vimtutor.bat in %windir%? 355 Also place vimtutor.bat in %windir%?
370 356
371 Support ":enew filename" to edit a new buffer with a name. It's like "enew | 357 Support ":enew filename" to edit a new buffer with a name. It's like "enew |
372 file filename" but without setting the alternate file to a buffer without a 358 file filename" but without setting the alternate file to a buffer without a
373 name. (Charles Campbell) 359 name. (Charles Campbell)
360
361 Add gui_mch_browsedir() for Motif, KDE and Mac OS/X.
374 362
375 363
376 Vi incompatibility: 364 Vi incompatibility:
377 9 In Ex mode, "u" undoes all changes, not just the last one. (John Cowan) 365 9 In Ex mode, "u" undoes all changes, not just the last one. (John Cowan)
378 8 In Ex mode, an empty file doesn't have a first line, "1p" should fail. 366 8 In Ex mode, an empty file doesn't have a first line, "1p" should fail.