mirror of
https://github.com/rizzatti/dash.vim.git
synced 2026-02-27 18:23:48 +01:00
21 lines
415 B
VimL
21 lines
415 B
VimL
" Description: Search Dash.app from Vim
|
|
" Author: José Otávio Rizzatti <zehrizzatti@gmail.com>
|
|
" License: MIT
|
|
|
|
let s:class = funcoo#object#class.extend()
|
|
let s:proto = {}
|
|
|
|
function! s:proto.constructor() dict abort "{{{
|
|
let self._keywords = []
|
|
endfunction
|
|
"}}}
|
|
|
|
function! s:proto.keywords() dict abort "{{{
|
|
return self._keywords
|
|
endfunction
|
|
"}}}
|
|
|
|
call s:class.include(s:proto)
|
|
|
|
let dash#cache#class = s:class
|