diff --git a/autoload/neocomplcache/sources/snippets_complete.vim b/autoload/neocomplcache/sources/snippets_complete.vim index bcaae2e..6c57ed6 100644 --- a/autoload/neocomplcache/sources/snippets_complete.vim +++ b/autoload/neocomplcache/sources/snippets_complete.vim @@ -1,7 +1,7 @@ "============================================================================= " FILE: snippets_complete.vim " AUTHOR: Shougo Matsushita -" Last Modified: 15 Jan 2012. +" Last Modified: 05 Feb 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 @@ -51,7 +51,7 @@ function! s:source.initialize()"{{{ endif call neocomplcache#set_dictionary_helper( - \ g:neocomplcache_plugin_rank, 'snippets_complete', 8) + \ g:neocomplcache_source_rank, 'snippets_complete', 8) let s:snippets_dir = [] let s:runtime_dir = split(globpath(&runtimepath, diff --git a/doc/neocomplcache-snippets-complete.txt b/doc/neocomplcache-snippets-complete.txt index f52c1c3..64696ad 100644 --- a/doc/neocomplcache-snippets-complete.txt +++ b/doc/neocomplcache-snippets-complete.txt @@ -278,6 +278,9 @@ snippet *neocomplcache-snippets-complete-unite-action-snippet* ============================================================================== CHANGELOG *neocomplcache-snippets-complete-changelog* +2012-02-05 +- Fixed variable name. + 2012-02-02 - Initial version. - Improved documentation.