- Added neocomplcache#sources#snippets_complete#get_snippets_dir().

This commit is contained in:
Shougo Matsushita 2012-06-06 10:01:42 +09:00
parent 2bc321b8a5
commit 0dc85a33c5
2 changed files with 7 additions and 1 deletions

View File

@ -1,7 +1,7 @@
"=============================================================================
" FILE: snippets_complete.vim
" AUTHOR: Shougo Matsushita <Shougo.Matsu@gmail.com>
" Last Modified: 02 Jun 2012.
" Last Modified: 06 Jun 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
@ -881,6 +881,9 @@ function! neocomplcache#sources#snippets_complete#get_snippets()"{{{
return snippets
endfunction"}}}
function! neocomplcache#sources#snippets_complete#get_snippets_dir()"{{{
return s:snippets_dir
endfunction"}}}
function! s:get_placeholder_marker_pattern()"{{{
return '<`\d\+\%(:.\{-}\)\?\\\@<!`>'

View File

@ -300,6 +300,9 @@ snippet *neocomplcache-snippets-complete-unite-action-snippet*
==============================================================================
CHANGELOG *neocomplcache-snippets-complete-changelog*
2012-06-06
- Added neocomplcache#sources#snippets_complete#get_snippets_dir().
2012-06-02
- Fixed exapnd indentation.