Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Autocompletion of Vimscript functions, variables, and other language features for Vimcomplete plugin.

License

Notifications You must be signed in to change notification settings

girishji/vimscript-complete.vim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vimscript Language Completion Helper for Vimcomplete Plugin

This plugin is a helper for Vim completion plugin Vimcomplete. It completes Vimscript function names, arguments, variables, reserved words and the like.

Requirements

  • Vim >= 9.0

Installation

Install this plugin after Vimcomplete.

Install using vim-plug.

vim9script
plug#begin()
Plug 'girishji/vimscript-complete.vim'
plug#end()

For those who prefer legacy script.

call plug#begin()
Plug 'girishji/vimscript-complete.vim'
call plug#end()

Or use Vim's builtin package manager.

Configuration

Default options are as follows.

vim9script
export var options: dict<any> = {
    priority: 9,     # Higher priority items are shown at the top
    maxCount: 10,    # Maximum number of next-word items shown
}
autocmd VimEnter * g:VimCompleteOptionsSet(options)

About

Autocompletion of Vimscript functions, variables, and other language features for Vimcomplete plugin.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published