https://github.com/prabirshrestha/asyncomplete-emmet.vim
https://github.com/prabirshrestha/asyncomplete-emmet.vim
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/prabirshrestha/asyncomplete-emmet.vim
- Owner: prabirshrestha
- License: mit
- Created: 2020-06-13T19:30:07.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-06-13T19:31:23.000Z (about 5 years ago)
- Last Synced: 2025-03-28T04:30:39.004Z (3 months ago)
- Language: Vim script
- Size: 1.95 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# asyncomplete-emmet.vim
[emmet-vim](https://github.com/mattn/emmet-vim) completion source for [asyncomplete.vim](https://github.com/prabirshrestha/asyncomplete.vim)
## Install
```vim
Plug 'prabirshrestha/asyncomplete.vim'
Plug 'prabirshrestha/asyncomplete-emmet.vim'
```## Register asyncomplete-omni.vim
```vim
au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#emmet#get_source_options({
\ 'name': 'emmet',
\ 'whitelist': ['html'],
\ 'completor': function('asyncomplete#sources#emmet#completor'),
\ }))
```## Note
Refer to emmet-vim docs for information no how to expand emmet-vim completion items.