Files
dash.vim-mirror/autoload/dash/profile.vim
José Otávio Rizzatti 40f2cccd07 Update headers
2013-03-19 15:39:15 -04:00

18 lines
447 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(name, keyword, docsets) dict abort "{{{
let self.name = a:name
let self.keyword = tolower(substitute(a:keyword, ':', '', ''))
let self.docsets = a:docsets
endfunction
"}}}
call s:class.include(s:proto)
let dash#profile#class = s:class