comparison runtime/doc/todo.txt @ 2316:db0ea641e382 vim73

Fix: cursor line not properly concealed when moving between windows. (Vince Negri)
author Bram Moolenaar <bram@vim.org>
date Wed, 14 Jul 2010 20:57:00 +0200
parents 2e6dbc2fccd4
children 2b2cd34569eb
comparison
equal deleted inserted replaced
2315:2e6dbc2fccd4 2316:db0ea641e382
1089 1089
1090 1090
1091 Before (beta) release 7.3: 1091 Before (beta) release 7.3:
1092 - Add fixes for 7.2 to version7.txt 1092 - Add fixes for 7.2 to version7.txt
1093 - Add hg history to version7.txt 1093 - Add hg history to version7.txt
1094 - Remove UF_VERSION_CRYPT_PREV and UF_VERSION_PREV.
1094 - Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23) 1095 - Rename vim73 branch to default (hints: Xavier de Gaye, 2010 May 23)
1095 1096
1096 Vim 7.3: 1097 Vim 7.3:
1097 - Soon: remove UF_VERSION_CRYPT_PREV and UF_VERSION_PREV.
1098 - Conceal feature: no update when moving to another window. (Dominique Pelle,
1099 2010 Jul 5) Vince will look into it.
1100 Patches to possibly include: 1098 Patches to possibly include:
1101 - Add different highlighting for a fold line depending on the fold level. 1099 - Add different highlighting for a fold line depending on the fold level.
1102 Patch. (Noel Henson, 2009 Sep 13) 1100 Patch. (Noel Henson, 2009 Sep 13)
1103 - Patch to make synIDattr() work for GUI attributes in Vim without GUI 1101 - Patch to make synIDattr() work for GUI attributes in Vim without GUI
1104 feature. (Matt Wozniski, 2009 Apr 15) 1102 feature. (Matt Wozniski, 2009 Apr 15)
3952 8 See ":e" as a change operation, find the changes and add them to the 3950 8 See ":e" as a change operation, find the changes and add them to the
3953 undo info. Also be able to undo the "Reload file" choice for when a file 3951 undo info. Also be able to undo the "Reload file" choice for when a file
3954 was changed outside of Vim. 3952 was changed outside of Vim.
3955 Would require doing a diff between the buffer text and the file and 3953 Would require doing a diff between the buffer text and the file and
3956 storing the differences. 3954 storing the differences.
3955 Alternative: before reloading a buffer, store it somewhere. Keep a list
3956 of about 10 last reloaded buffers.
3957 OR: before unloading, write a backup file with the current text, as if
3958 doing ":w" twice before reloading.
3957 - Make it possible to undo all the commands from a mapping, including a 3959 - Make it possible to undo all the commands from a mapping, including a
3958 trailing unfinished command, e.g. for ":map K iX^[r". 3960 trailing unfinished command, e.g. for ":map K iX^[r".
3959 - When accidentally hitting "R" instead of Ctrl-R, further Ctrl-R is not 3961 - When accidentally hitting "R" instead of Ctrl-R, further Ctrl-R is not
3960 possible, even when typing <Esc> immediately. (Grahn) Also for "i", "a", 3962 possible, even when typing <Esc> immediately. (Grahn) Also for "i", "a",
3961 etc. Postpone saving for undo until something is really inserted? 3963 etc. Postpone saving for undo until something is really inserted?