Akshay Hegde 1670b76970 Version 0.2
VimCompletesMe v0.2

- Minor changes in README
- Added FAQ section in the docs
- Fix plugin name on vim.org
2014-04-01 21:31:52 -04:00
2014-04-01 21:31:52 -04:00
2014-03-25 21:32:23 -04:00
2014-04-01 21:31:52 -04:00
2014-03-25 21:32:23 -04:00

This is a mirror of http://www.vim.org/scripts/script.php?script_id=4902

A super simple, super minimal, super light-weight tab-completion plugin for Vim.

Without configuration, the Tab key will:

    Use Vim's local keyword completion (Ctrl-X_Ctrl-N).
    Complete a file path (Ctrl-X_Ctrl-F)
    Offer omni-completion after typing a period. (Ctrl-X_Ctrl-O)

With a b:vcm_tab_complete variable, the Tab key will complete using:

    Dictionary words (Ctrl-X_Ctrl-K)
    User-defined completion (Ctrl-X_Ctrl-U)
    Tags (Ctrl-X_Ctrl-])
    Vim command line (Ctrl-X_Ctrl-V)

You can set the b:vcm_tab_complete variable interactively, or in an autocommand:

autocmd FileType text,markdown let b:vcm_tab_complete = 'dict'

Striving for minimalism, this plugin weighs under 60 lines of code.

Note: You can always get the latest version on github: https://github.com/ajh17/VimCompletesMe
Description
Simple tab completion for Vim
Readme 63 KiB
Languages
Vim Script 100%