diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-12 22:01:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-12 22:01:11 +0200 |
commit | 30b658179962cc3c9f0a98f071b36b09a36c2b94 (patch) | |
tree | 65394aa7dfead6c415065471e17fefce6c8cd242 /runtime/doc/insert.txt | |
parent | dfef15481db114779fde81dc577319d88557c13a (diff) | |
download | vim-git-30b658179962cc3c9f0a98f071b36b09a36c2b94.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/doc/insert.txt')
-rw-r--r-- | runtime/doc/insert.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 4629c0f6c..bf020fd42 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1,4 +1,4 @@ -*insert.txt* For Vim version 7.3. Last change: 2012 May 18 +*insert.txt* For Vim version 7.3. Last change: 2012 Jul 10 VIM REFERENCE MANUAL by Bram Moolenaar @@ -491,7 +491,7 @@ option} *ins-smarttab* When the 'smarttab' option is on, a <Tab> inserts 'shiftwidth' positions at the beginning of a line and 'tabstop' positions in other places. This means -that often spaces instead of a <Tab> character are inserted. When 'smarttab +that often spaces instead of a <Tab> character are inserted. When 'smarttab' is off, a <Tab> always inserts 'tabstop' positions, and 'shiftwidth' is only used for ">>" and the like. {not in Vi} @@ -1044,6 +1044,8 @@ that contains the List. The Dict can have these items: leading text is changed. Other items are ignored. +For acting upon end of completion, see the |CompleteDone| autocommand event. + For example, the function can contain this: > let matches = ... list of words ... return {'words': matches, 'refresh': 'always'} |