summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-19 19:52:13 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-19 19:52:13 +0200
commitc400cb9ca7dbd88a6c0ae678c7e04e54311d552d (patch)
tree61177f3c62264dca07df5d8a9e2947450c0082b8 /runtime
parent01a8f38fcd469db0360b896cb670b889619d3752 (diff)
downloadvim-git-c400cb9ca7dbd88a6c0ae678c7e04e54311d552d.tar.gz
Rename w_p_conceal to w_p_conc for consistency.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/mlang.txt6
-rw-r--r--runtime/doc/options.txt4
-rw-r--r--runtime/doc/todo.txt8
3 files changed, 13 insertions, 5 deletions
diff --git a/runtime/doc/mlang.txt b/runtime/doc/mlang.txt
index d7127da38..d122521f8 100644
--- a/runtime/doc/mlang.txt
+++ b/runtime/doc/mlang.txt
@@ -58,8 +58,10 @@ use of "-" and "_".
The locale {name} must be a valid locale on your
system. Some systems accept aliases like "en" or
"en_US", but some only accept the full specification
- like "en_US.ISO_8859-1".
- With the "messages" argument the language used for
+ like "en_US.ISO_8859-1". On Unix systems you can use
+ the this command to see what locales are supported: >
+ :!locale -a
+< With the "messages" argument the language used for
messages is set. This can be different when you want,
for example, English messages while editing Japanese
text. This sets $LC_MESSAGES.
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index cae009f14..cbf099413 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1724,7 +1724,9 @@ A jump table for the options with a short description can be found at |Q_op|.
2 Concealed text is completely hidden unless it has a
custom replacement character defined (see
|:syn-cchar|.
- 3 Concealed text is completely hidden.
+ 3 Concealed text is completely hidden. Note: when
+ moving the cursor after concealed items the position
+ will be wrong.
*'confirm'* *'cf'* *'noconfirm'* *'nocf'*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index d2db68a55..1106927db 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -34,6 +34,11 @@ Update syntax menus: run checkmenu.
GTK: torn-off menu doesn't work.
+:find completion has duplicates. (Bjorn Winckler, 2010 Jul 18)
+
+Conceal: don't show for 'hlmatch' when 'modifiable' is off?
+And don't care about 'cursorline'.
+
Make 'cryptmethod' global-local, so that a default specified in a .vimrc file
is used for new files. (Christian J. Robinson)
@@ -2325,6 +2330,7 @@ Spell checking:
Diff mode:
9 Instead invoking an external diff program, use builtin code. One can be
found here: http://www.ioplex.com/~miallen/libmba/dl/src/diff.c
+ It's quite big and badly documented though.
8 Use diff mode to show the changes made in a buffer (compared to the file).
Use an unnamed buffer, like doing:
new | set bt=nofile | r # | 0d_ | diffthis | wincmd p | diffthis
@@ -3929,8 +3935,6 @@ Undo:
storing the differences.
Alternative: before reloading a buffer, store it somewhere. Keep a list
of about 10 last reloaded buffers.
- OR: before unloading, write a backup file with the current text, as if
- doing ":w" twice before reloading.
- Make it possible to undo all the commands from a mapping, including a
trailing unfinished command, e.g. for ":map K iX^[r".
- When accidentally hitting "R" instead of Ctrl-R, further Ctrl-R is not