summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-14 13:58:07 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-14 13:58:07 +0200
commit164fca39bdacc36b7d9f2d1b28ab5abe03ce4004 (patch)
tree0280e2098fc47966b5bb419f63d3c655a75d1e25 /runtime/doc
parent7abcaab78da25f07190a114a84a9000f91cf044f (diff)
Add clipboard support in Mac console. (Bjorn Winckler)
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/debug.txt10
-rw-r--r--runtime/doc/todo.txt6
2 files changed, 10 insertions, 6 deletions
diff --git a/runtime/doc/debug.txt b/runtime/doc/debug.txt
index 55939022bf..eb5a30593d 100644
--- a/runtime/doc/debug.txt
+++ b/runtime/doc/debug.txt
@@ -39,7 +39,7 @@ This also applies when using the MingW tools.
==============================================================================
-2. Locating memory leaks *debug-leaks*
+2. Locating memory leaks *debug-leaks* *valgrind*
If you suspect Vim is leaking memory and you are using Linux, the valgrind
tool is very useful to pinpoint memory leaks.
@@ -47,14 +47,18 @@ tool is very useful to pinpoint memory leaks.
First of all, build Vim with EXITFREE defined. Search for this in MAKEFILE
and uncomment the line.
-Use this command to start Vim: *valgrind*
+Use this command to start Vim:
>
- valgrind --log-file=valgrind.log ./vim
+ valgrind --log-file=valgrind.log --leak-check=full ./vim
Note: Vim will run much slower. If your .vimrc is big or you have several
plugins you need to be patient for startup, or run with the "-u NONE"
argument.
+There are often a few leaks from libraries, such as getpwuid() and
+XtVaAppCreateShell(). Those are unavoidable. The number of bytes should be
+very small a Kbyte or less.
+
==============================================================================
3. Windows Bug Reporting *debug-win32*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 6077c2cc5e..6a7d9ad66c 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1098,7 +1098,7 @@ Vim 7.3:
- Conceal feature: no update when moving to another window. (Dominique Pelle,
2010 Jul 5) Vince will look into it.
Patches to possibly include:
-- Mac: console clipboard support. (Bjoren Winckler, 2010 Jul 12)
+- Mac: console clipboard support. (Bjorn Winckler, 2010 Jul 12)
- Win32: patch for better font scaling. (George Reilly, 2009 Mar 26)
- Patch for completion of ":find" arguments. (Nazri Ramliy, 2009 Feb 22, 26)
8 For ":find" and ":sfind" expand files found in 'path'.
@@ -1106,8 +1106,9 @@ Patches to possibly include:
- Patch for vertical line at certain column position, 'guidecolumn' option.
(Pankaj Garg, 2009 Apr 14, aka Lone, Apr 15)
Update 2009 May 2, 'margincolumn'
- Alternative patch. (2010 Feb 2, Gregor Uhlenheuer, update Apr 18 2010)
+ Alternative patch. (2010 Feb 2, Gregor Uhlenheuer, update 2010 Jul 12)
Fix by Lech Lorens, Apr 19
+ When there are multiple columns it makes sense to call it 'guidecolumn'
- Another patch for Javascript indenting. (Hari Kumar, 2010 Jul 11)
Needs a few tests.
- Add different highlighting for a fold line depending on the fold level.
@@ -1124,7 +1125,6 @@ Patches to possibly include:
Docs patch by Dominique Pelle, Mar 25
Update 2009 Mar 28.
Fix for invalid memory access. (Lech Lorens, 2009 Apr 17)
-- Fix for test29. (Milan Vancura, 2010 May 16)
- Disable setting 'encoding' from a modeline? It usually causes problems,
can't do any good. (Patch from Patrick Texier, 2008 Dec 9)
- Redraw problem when appending digraph causes line to wrap. (James Vega, 2007