comparison runtime/doc/todo.txt @ 594:35cef95a6b76 v7.0168

updated for version 7.0168
author vimboss
date Mon, 12 Dec 2005 22:05:50 +0000
parents 36071a92cb76
children b9975513fe24
comparison
equal deleted inserted replaced
593:d220eb88e4e4 594:35cef95a6b76
1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 11 1 *todo.txt* For Vim version 7.0aa. Last change: 2005 Dec 12
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
27 See |develop.txt| for development plans. You can vote for which items should 27 See |develop.txt| for development plans. You can vote for which items should
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
33 When editing a file "a" that is a symbolic link to "b", while another Vim is
34 editing "b", there is no warning. Follow symlink to make swap file name?
35 Patch from Stefano Zacchiroli. Updated by James Vega, Dec 2.
36
37 Using pipes for filter commands: provide some way to type a password, keep
38 stderr in/out open for this? (Konstanti Rozinov)
39 New problem: password is echoed. Put terminal in cooked mode and don't read
40 from terminal?
41
42 Allow the user to handle the situation that a swap file already exists.
43 Option to define a function to be called? Function would return the character
44 that the dialog provides. Would make it possible to bring the other Vim to
45 the foreground and abort the edit. Or hard-code this?
46
47 To support mapping <F4> to be used as <F4>{motion}: Add operator that
48 executes a user defined function. '[ and '] marks are at start and end of
49 text. ":map <F4> :set opfunc=MyOp<CR>gy".
50 32
51 Patch from Yasuhiro Matsumoto: ":e ++enc=xxx" keeps encoding for conversion 33 Patch from Yasuhiro Matsumoto: ":e ++enc=xxx" keeps encoding for conversion
52 errors and illegal bytes. Make default to replace bad bytes/characters with 34 errors and illegal bytes. Make default to replace bad bytes/characters with
53 '?' and allow for two alternatives: 35 '?' and allow for two alternatives:
54 :e ++enc=xxx ++bad=keep foo.txt 36 :e ++enc=xxx ++bad=keep foo.txt