summaryrefslogtreecommitdiffstats
path: root/runtime/doc
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-05-31 21:27:30 +0200
committerBram Moolenaar <Bram@vim.org>2010-05-31 21:27:30 +0200
commit20a825ae0f90099249924740a5113e6ed413bc66 (patch)
tree701bee23df4392b438c677a8b28cf76b0240f8c7 /runtime/doc
parenta3ff49fdccd518c91c9445ab3e82394b6812bf4a (diff)
Add test for gettabvar() and settabvar().
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/options.txt2
-rw-r--r--runtime/doc/todo.txt10
2 files changed, 9 insertions, 3 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 8c8006c8d0..498df7febe 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1450,6 +1450,8 @@ A jump table for the options with a short description can be found at |Q_op|.
as HTML. This works to copy rendered HTML from
Firefox, paste it as raw HTML in Vim, select the HTML
in Vim and paste it in a rich edit box in Firefox.
+ You probably want to add this only temporarily,
+ possibly use BufEnter autocommands.
Only supported for GTK version 2 and later.
Only available with the |+multi_byte| feature.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 0bd8d6700f..4d7674b650 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1087,12 +1087,16 @@ Vim 7.3:
Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi
- Also crypt the swap file, each block separately. Change mf_write() and
mf_read(). How to get b_p_key to these functions?
+ Generate seed for each block, store in pointer block. Block 1 is not
+ encrypted.
+ When changing the password need to read back with the old password and
+ write again with the new one.
+ Verify recovery works.
+- Update for crypt code to use salt. (Mohsin May 30)
+ Make the strengthen_key value configurable and store it in the header.
- Do profiling on sha256 code to find obvious bottlenecks.
- Do profiling on crypt code to find obvious bottlenecks.
-- Make 'clipboard' global-local, for "html"? Christian J. Robinson.
Patches to include:
-- Extend test62 for gettabvar() and settabvar(). (Yegappan Lakshmanan, 2010
- May 23)
- Use off_t instead of long for bytes in a buffer. (James Vega, 2010 May 22,
update next day)
- Include conceal patch?