Better implementation of creating the Color Scheme menu. (Juergen Kraemer)
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 8906b93..284968f 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1091,35 +1091,22 @@
Vim 7.3:
Patches to possibly include:
-6 In the quickfix window statusline add the command used to get the list of
- errors, e.g. ":make foo", ":grep something *.c".
- Patch by Lech Lorens, 2009 Mar 23.
- Comments from Andreas Bernauer 24th, Dominique Pelle 24th
- Docs patch by Dominique Pelle, Mar 25
- Update 2009 Mar 28.
- Fix for invalid memory access. (Lech Lorens, 2009 Apr 17)
-- Patch for colorscheme submenu. (Juergen Kraemer, 2008 Aug 20)
- 9 Make it possible to drag a tab page label to another position with the
mouse.
- Patch by Paul B. Mahol, 2008 Aug 29.
-- Mac: Patch to disable antialias. (LC Mi, 2008 Aug 23) Tested on 10.5 and
- 10.4.
-- Patch for adding "J" flag to 'cinoptions': placement of jump label. (Manuel
- Konig, 2010 Feb 19) Update by Lech Lorens, Feb 22.
- Need another name, "J" is now used for Javascript.
+ Patch by Paul B. Mahol, 2008 Aug 29.
+- Mac: Patch to disable antialias. (LC Mi, 2008 Aug 23) Tested on 10.5 and
+ 10.4.
+- Patch for adding "J" flag to 'cinoptions': placement of jump label. (Manuel
+ Konig, 2010 Feb 19) Update by Lech Lorens, Feb 22.
+ Need another name, "J" is now used for Javascript.
+- Patch for Python 3 support. (Roland Puntaier, 2009 Sep 22)
+ Includes changes for omnicompletion.
+ Needs some more testing.
+ Update 2010 Apr 20, patch by Andy Kittner, May 16
+ Build the MS-Windows version with Python 2.6.5 and 3.1.2?
Needs some work:
-- Have a look at patch to enable screen access from Python. (Marko Mahnic,
- 2010 Apr 12)
-- Patch for Python 3 support. (Roland Puntaier, 2009 Sep 22)
- Includes changes for omnicompletion.
- Needs some more testing.
- Update 2010 Apr 20, patch by Andy Kittner, May 16
- Build the MS-Windows version with Python 2.6.5 and 3.1.2?
-- Easier/standard way to disable default plugins.
-- ":{range}source": source the lines from the current file.
- You can already yank lines and use :@" to execute them.
- Most of do_source() would not be used, need a new function.
- It's easy when not doing breakpoints or profiling.
+- Have a look at patch to enable screen access from Python. (Marko Mahnic,
+ 2010 Apr 12)
More patches:
@@ -1161,6 +1148,12 @@
more friendly for the Vim distribution.
New version received 2008 Jan 6.
No maintenance in two years...
+6 In the quickfix window statusline add the command used to get the list of
+ errors, e.g. ":make foo", ":grep something *.c".
+ Patch by Lech Lorens, 2009 Apri 17.
+ Comments from Andreas Bernauer 24th, Dominique Pelle 24th
+ Docs patch by Dominique Pelle, Mar 25
+ Can we put the strings in a window-local variable?
Awaiting updated patches:
@@ -2670,6 +2663,12 @@
- Add ":let var ?= value", conditional assignment. Patch by Dave Eggum,
2006 Dec 11.
- range for ":exec", pass it on to the executed command. (Webb)
+8 ":{range}source": source the lines from the current file.
+ You can already yank lines and use :@" to execute them.
+ Most of do_source() would not be used, need a new function.
+ It's easy when not doing breakpoints or profiling.
+ Requires copying the lines into a list and then creating a function to
+ execute lines from the list. Similar to getnextac().
7 ":include" command: just like ":source" but doesn't start a new scriptID?
Will be tricky for the list of script names.
8 Have a look at VSEL. Would it be useful to include? (Bigham)