Skip to content

Commit

Permalink
fix typo in name of cache file directory
Browse files Browse the repository at this point in the history
  • Loading branch information
SethMilliken authored and MarcWeber committed Aug 15, 2012
1 parent d1bfbc5 commit a1b611a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/cached_file_contents.vim
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let s:c['scanned_files'] = get(s:c, 'scanned_files', {})
let s:scanned_files = s:c['scanned_files']


let s:define_cache_file = "let this_dir = s:c['cache_dir'].'/cached-file-conents' | let cache_file = expand(this_dir.'/'.substitute(string([func_as_string, a:file]),'[[\\]{}:/\\,''\"# ]\\+','_','g'))"
let s:define_cache_file = "let this_dir = s:c['cache_dir'].'/cached-file-contents' | let cache_file = expand(this_dir.'/'.substitute(string([func_as_string, a:file]),'[[\\]{}:/\\,''\"# ]\\+','_','g'))"

" read a file, run function to extract contents and cache the result returned
" by that function in memory. Optionally the result can be cached on disk as
Expand Down

0 comments on commit a1b611a

Please sign in to comment.