Hi,
2016/9/28 Wed 4:58:00 UTC+9 Bram Moolenaar wrote:
> Christian Brabandt wrote:
>
> > I attach an update to todo.txt
> >
> > I cleaned it up a little, removed some duplicates and removed some
> > things, that have been solved differently in the meantime. However some
> > of those changes could be controversial, so you might not want to take
> > over each change.
>
> Pff, that's a long list. I checked a few that seemed to be done.
> Don't have time to check all of them. Please let me know if something
> should not be removed.
>
> > Also, I have annotated one item, but I think it can also be removed:
> > ,----
> > | Need a Vim equivalent of Python's None and a way to test for it.
> > | Use v:none. var == v:none
> > `----
>
> I think that can be removed.
Another todo update is attached.
Win16/MS-DOS related items can be removed.
Regards,
Ken Takata
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
# HG changeset patch
# Parent 779f60981a87ac28a3e778472e67e4ff520b563f
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -470,10 +470,6 @@ the file name ends up encoded wrong. (Ra
Patch for problem with restoring screen on Windows. (Nobuhiro Takasaki, 2015
Sep 10)
-Patch to set antialiasing style on Windows. (Ondrej Balaz, 2013 Mar 14)
-Needs a different check for CLEARTYPE_QUALITY.
-Problem mentioned by Christian Brabandt, 2016 Jan 4.
-
Example in editing.txt uses $HOME with the expectation that it ends in a
slash. For me it does, but perhaps not for everybody. Add a function that
inserts a slash when needed? pathconcat(dir, path) (Thilo Six, 2015 Aug 12)
@@ -1940,8 +1940,6 @@ patches by Mathias, see mail Feb 22)
Win32: compiling with normal features and OLE fails. Patch by Mathias
Michaelis, 2006 Jun 4.
-Win16: include patches to make Win16 version work. (Vince Negri, 2006 May 22)
-
Win32: after "[I" showing matches, scroll wheel messes up screen. (Tsakiridis,
2007 Feb 18)
Patch by Alex Dobrynin, 2007 Jun 3. Also fixes other scroll wheel problems.
@@ -2540,9 +2538,6 @@ 8 When 'encoding' is "utf-8", should u
7 When font smoothing is enabled, redrawing can become very slow. The reason
appears to be drawing with a transparent background. Would it be possible
to use an opaque background in most places?
-8 Use another default for 'termencoding': the active codepage. Means that
- when 'encoding' is changed typing characters still works properly.
- Alternative: use the Unicode functions to obtain typed characters.
7 The cursor color indicating IME mode doesn't work properly. (Shizhu Pan,
2004 May 9)
8 Win32: When clicking on the gvim title bar, which gives it focus, produces
@@ -2786,9 +2781,6 @@ 9 tmpnam() uses file in root of file s
a Netware network drive. Use same function as for Win32 GUI?
8 In os_win32.h, HAVE_STRICMP and HAVE_STRNICMP are defined only if __GNUC__
is not defined. Shouldn't that be the other way around?
-7 Use SetConsoleCP() and SetConsoleOutputCP() to implement 'termencoding'?
- Avoids that input and output work differently. Need to be restored when
- exiting.
Amiga:
@@ -2939,9 +2931,6 @@ 8 ":hardcopy":
one for B&W printing (if that can be detected).
8 In Visual block mode with 'lbr' set, a change command doesn't insert the
text in following lines where the linebreak changes.
-9 dosinst.c: The DJGPP version can't uninstall the Uninstall registry key on
- Windows NT. How to install a .inf file on Windows NT and how to detect
- that Windows NT is being used?
8 When 'virtualedit' is "block,insert" and encoding is "utf-8", selecting a
block of one double-wide character, then "d" deletes only half of it.
8 When 'virtualedit' is set, should "I" in blockwise visual mode also insert
@@ -3121,11 +3110,6 @@ Problems that will (probably) not be sol
- Amiga: The ":cq" command does not always abort the Manx compiler. Why?
- Linux: A file with protection r--rw-rw- is seen readonly for others. The
access() function in GNU libc is probably wrong.
-- MSDOS: When using smartdrive with write-back buffering, writing to a
- readonly floppy will cause problems. How to test for a writable floppy
- first?
-- MSDOS: Both 16 and 32 bit versions: File name expansion doesn't work for
- names that start with a dot. These used to be illegal file names.
- When doing a CTRL-Z and typing a command for the shell, while Vim is busy
(e.g. writing a file), the command for the shell is sometimes eaten by Vim,
because the terminal mode is changed from RAW to CBREAK.
@@ -3899,7 +3883,6 @@ 7 HTML syntax highlighting is slow for
http://www.theregister.co.uk/content/4/22908.html. (Andre Pang)
7 Check how performance of loading the wordlist can be improved (adding a
lot of abbreviations).
-7 MS-DOS console: Add t_DL support, to make scrolling faster.
7 Compile Ex commands to byte codes. Store byte codes in a vim script file
at the end, after "compiled:. Make it look like a single comment line
for old Vim versions. Insert first line "Vim script compiled <timestamp>.
@@ -5650,7 +5633,6 @@ 8 Allow opening an unnamed buffer with
gives read errors. Check protection before opening.
- When writing check for file exists but no permission, "Permission denied".
- If file does not exist, check if directory exists.
-- MSDOS: although t_cv and t_ci are not set, do invert char under cursor.
- Settings edit mode: make file with ":set opt=xx", edit it, parse it as ex
commands.
- ":set -w all": list one option per line.