summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-24 16:58:02 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-24 16:58:02 +0200
commit2c3b1d997607e44d5037bd8875fcc98bc31020b4 (patch)
tree4c095cc2986c60278d87a317e98d78a632eba045
parent904c622b105bf785df59f870831309d5c0c7722e (diff)
downloadvim-git-2c3b1d997607e44d5037bd8875fcc98bc31020b4.tar.gz
Document extra argument for Python append().
-rw-r--r--runtime/doc/if_pyth.txt6
-rw-r--r--runtime/doc/todo.txt2
2 files changed, 6 insertions, 2 deletions
diff --git a/runtime/doc/if_pyth.txt b/runtime/doc/if_pyth.txt
index 953d95b8d..f9fddaffd 100644
--- a/runtime/doc/if_pyth.txt
+++ b/runtime/doc/if_pyth.txt
@@ -1,4 +1,4 @@
-*if_pyth.txt* For Vim version 7.3b. Last change: 2010 Jul 21
+*if_pyth.txt* For Vim version 7.3b. Last change: 2010 Jul 24
VIM REFERENCE MANUAL by Paul Moore
@@ -240,10 +240,12 @@ with marks (see below) which use vim line numbers.
The buffer object methods are:
b.append(str) Append a line to the buffer
+ b.append(str, nr) Idem, below line "nr"
b.append(list) Append a list of lines to the buffer
Note that the option of supplying a list of strings to
the append method differs from the equivalent method
for Python's built-in list objects.
+ b.append(list, nr) Idem, below line "nr"
b.mark(name) Return a tuple (row,col) representing the position
of the named mark (can also get the []"<> marks)
b.range(s,e) Return a range object (see |python-range|) which
@@ -285,10 +287,12 @@ The range object attributes are:
The range object methods are:
r.append(str) Append a line to the range
+ r.append(str, nr) Idem, after line "nr"
r.append(list) Append a list of lines to the range
Note that the option of supplying a list of strings to
the append method differs from the equivalent method
for Python's built-in list objects.
+ r.append(list, nr) Idem, after line "nr"
Example (assume r is the current range):
# Send all lines in a range to the default printer
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 547941bbf..adb714027 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -300,7 +300,7 @@ does not work. (Nieko Maatjes, 2009 Jan 8, Ingo Karkat, 2009 Jan 22)
opening/closing window causes other window with 'winfixheight' to change
height. Also happens when there is another window in the frame, if it's not
-very high. (Yegappan Lakshmanan, 2010 Jul 22)
+very high. (Yegappan Lakshmanan, 2010 Jul 22, Michael Peeters, 2010 Jul 22)
Directory wrong in session file, caused by ":lcd" in BufEnter autocommand.
(Felix Kater, 2009 Mar 3)