- Added options word.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
"=============================================================================
|
||||
" FILE: snippets_complete.vim
|
||||
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
|
||||
" Last Modified: 19 Oct 2012.
|
||||
" Last Modified: 21 Oct 2012.
|
||||
" License: MIT license {{{
|
||||
" Permission is hereby granted, free of charge, to any person obtaining
|
||||
" a copy of this software and associated documentation files (the
|
||||
@@ -41,6 +41,14 @@ function! s:source.initialize()"{{{
|
||||
endfunction"}}}
|
||||
|
||||
function! s:source.get_keyword_pos(cur_text)"{{{
|
||||
let cur_word = matchstr(a:cur_text, '\w\+$')
|
||||
let word_candidates = neocomplcache#keyword_filter(
|
||||
\ filter(values(neosnippet#get_snippets()),
|
||||
\ 'v:val.options.word'), cur_word)
|
||||
if !empty(word_candidates)
|
||||
return match(a:cur_text, '\w\+$')
|
||||
endif
|
||||
|
||||
return match(a:cur_text, '\S\+$')
|
||||
endfunction"}}}
|
||||
|
||||
|
||||
@@ -435,9 +435,15 @@ function! s:is_beginning_of_line(cur_text)"{{{
|
||||
return prev_word_end <= 0
|
||||
endfunction"}}}
|
||||
function! s:get_cursor_snippet(snippets, cur_text)"{{{
|
||||
let cur_word = matchstr(a:cur_text, '\w\+$')
|
||||
if cur_word != '' &&
|
||||
\ has_key(a:snippets, cur_word) && a:snippets[cur_word].options.word
|
||||
return cur_word
|
||||
endif
|
||||
|
||||
let cur_word = matchstr(a:cur_text, '\S\+$')
|
||||
|
||||
return has_key(a:snippets, cur_word) ? cur_word : ''
|
||||
return cur_word != '' && has_key(a:snippets, cur_word) ? cur_word : ''
|
||||
endfunction"}}}
|
||||
function! s:snippets_expand(cur_text, col)"{{{
|
||||
let cur_word = s:get_cursor_snippet(
|
||||
|
||||
@@ -1,16 +1,20 @@
|
||||
# Global snippets
|
||||
|
||||
snippet date
|
||||
options word
|
||||
`strftime("%d %b %Y")`
|
||||
|
||||
snippet date_full
|
||||
alias df
|
||||
options word
|
||||
`strftime("%Y-%m-%dT%H:%M:%S")`
|
||||
|
||||
snippet date_day
|
||||
alias dd
|
||||
options word
|
||||
`strftime("%Y-%m-%d")`
|
||||
|
||||
snippet date_time
|
||||
alias dt
|
||||
options word
|
||||
`strftime("%H:%M:%S")`
|
||||
|
||||
Reference in New Issue
Block a user