1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
|
"=============================================================================
" sonictemplate.vim
" Author: Yasuhiro Matsumoto <mattn.jp@gmail.com>
" Last Change: 03-Sep-2013.
let s:save_cpo = &cpo
set cpo&vim
let s:tmpldir = []
if exists('g:sonictemplate_vim_template_dir')
if type(g:sonictemplate_vim_template_dir) == 3
let s:tmpldir += map(g:sonictemplate_vim_template_dir, 'fnamemodify(expand(v:val), ":p")')
else
call add(s:tmpldir, fnamemodify(expand(g:sonictemplate_vim_template_dir), ":p"))
endif
endif
call add(s:tmpldir, expand('<sfile>:p:h:h') . '/template/')
function! sonictemplate#select(mode) abort
let name = input(':Template ', '', 'customlist,sonictemplate#complete')
if name == ''
return ''
endif
call sonictemplate#apply(name, a:mode, 0)
return ''
endfunction
function! sonictemplate#select_intelligent(mode) abort
let name = input(':Template ', '', 'customlist,sonictemplate#complete_intelligent')
if name == ''
return ''
endif
call sonictemplate#apply(name, a:mode, 1)
return ''
endfunction
function! sonictemplate#get_filetype()
let c = col('.')
if c == col('$')
let c -= 1
endif
let ft = tolower(synIDattr(synID(line("."), c, 1), "name"))
if ft =~ '^css\w'
let ft = 'css'
elseif ft =~ '^html\w'
let ft = 'html'
elseif ft =~ '^javaScript'
let ft = 'javascript'
elseif ft =~ '^xml\w'
let ft = 'xml'
endif
return ft
endfunction
function! s:get_candidate(fts, lead)
let fts = a:fts
let filter = ''
let prefix = search('[^ \t]', 'wn') ? 'snip' : 'base'
try
let ft = s:get_filetype()
let cxt = sonictemplate#lang#{ft!=""?ft:"_"}#guess()
if has_key(cxt, 'prefix')
let prefix = cxt['prefix']
call s:setopt('prefix', cxt['prefix'])
endif
if has_key(cxt, 'filter')
let filter = cxt['filter']
endif
if has_key(cxt, 'filetype')
let fts = [cxt['filetype']]
call s:setopt('filetype', cxt['filetype'])
else
call s:setopt('prefix', '')
call s:setopt('filetype', '')
endif
catch
endtry
let tmp = []
if prefix == 'base'
for tmpldir in s:tmpldir
let tmp += map(split(globpath(join([tmpldir, ft], '/'), 'file-' . expand('%:t:r') . '*.*'), "\n"), 'fnamemodify(v:val, ":t:r")[5:]')
endfor
if &ft == ''
for tmpldir in s:tmpldir
let tmp += sort(map(split(globpath(join([tmpldir, '_'], '/'), 'file-' . expand('%:t:r') . '*.*'), "\n"), 'fnamemodify(v:val, ":t:r")[5:]'))
endfor
endif
endif
for tmpldir in s:tmpldir
for ft in fts
let tmp += sort(map(split(globpath(join([tmpldir, ft], '/'), prefix . '-' . a:lead . '*.*'), "\n"), 'fnamemodify(v:val, ":t:r")[5:]'))
endfor
endfor
for tmpldir in s:tmpldir
let tmp += sort(map(split(globpath(join([tmpldir, '_'], '/'), prefix . '-' . a:lead . '*.*'), "\n"), 'fnamemodify(v:val, ":t:r")[5:]'))
endfor
let candidate = []
for c in tmp
if index(candidate, c) == -1
call add(candidate, c)
endif
endfor
if filter == ''
let filter = s:getopt('filter')
endif
if filter != ''
let [lhs, rhs] = [[], []]
for c in candidate
let ms = matchstr(c, filter)
if ms != '' && matchstr(c, ms) == 0
call add(lhs, c)
else
call add(rhs, c)
endif
endfor
let candidate = lhs + rhs
endif
return candidate
endfunction
function! sonictemplate#complete(lead, cmdline, curpos) abort
return s:get_candidate([&ft, s:get_filetype(), sonictemplate#get_filetype()], a:lead)
endfunction
function! sonictemplate#complete_intelligent(lead, cmdline, curpos) abort
return s:get_candidate([sonictemplate#get_filetype(), &ft, s:get_filetype()], a:lead)
endfunction
function! s:setopt(k, v)
if !exists('b:sonictemplate')
let b:sonictemplate = {}
endif
let b:sonictemplate[a:k] = a:v
endfunction
function! s:getopt(k)
if !exists('b:sonictemplate') || !has_key(b:sonictemplate, a:k)
return ''
endif
return b:sonictemplate[a:k]
endfunction
let s:vars = {}
function! s:get_filetype()
return matchstr(&ft, '^\([^.]\)\+')
endfunction
function! sonictemplate#getvar(name)
let ft = s:get_filetype()
let ft = ft != "" ? ft : "_"
if !has_key(s:vars, ft)
return ''
endif
return has_key(s:vars[ft], a:name) ? s:vars[ft][a:name] : ''
endfunction
function! sonictemplate#apply(name, mode, ...) abort
let name = matchstr(a:name, '\S\+')
let buffer_is_not_empty = search('[^ \t]', 'wn')
let fs = []
let prefix = s:getopt('prefix')
if prefix == ''
let prefix = search('[^ \t]', 'wn') ? 'snip' : 'base'
endif
let ft = s:getopt('filetype')
if ft == ''
if get(a:000, 0, 0)
let fts = [sonictemplate#get_filetype(), &ft, s:get_filetype(), '_']
else
let fts = [&ft, s:get_filetype(), sonictemplate#get_filetype(), '_']
endif
else
let fts = [ft]
endif
if prefix == 'base'
for tmpldir in s:tmpldir
for ft in fts
let fs += sort(split(globpath(join([tmpldir, ft], '/'), 'file-' . name . '.*'), "\n"))
endfor
for ft in fts
let fs += sort(split(globpath(join([tmpldir, '_'], '/'), 'file-' . name . '.*'), "\n"))
endfor
endfor
endif
if len(fs) == 0
for tmpldir in s:tmpldir
for ft in fts
if len(ft) > 0
let fs += sort(split(globpath(join([tmpldir, ft], '/'), prefix . '-' . name . '.*'), "\n"))
endif
endfor
endfor
endif
if len(fs) == 0
echomsg 'Template '.name.' is not exists.'
return
endif
let f = fs[0]
if !filereadable(f)
echomsg 'Template '.name.' is not exists.'
return
endif
let ft = s:get_filetype()
let ft = ft != "" ? ft : "_"
let c = join(readfile(f), "\n")
let c = substitute(c, '{{_name_}}', expand('%:t:r:'), 'g')
let tmp = c
let mx = '{{_input_:\(.\{-}\)}}'
if !has_key(s:vars, ft)
let s:vars[ft] = {}
endif
let vars = []
while 1
let match = matchstr(tmp, mx)
if len(match) == 0
break
endif
let var = substitute(match, mx, '\1', 'ig')
if index(vars, var) == -1
call add(vars, var)
endif
let tmp = tmp[stridx(tmp, match) + len(match):]
endwhile
let gvars = has_key(g:, 'sonictemplate_vim_vars') && type(g:sonictemplate_vim_vars) == 4 ? g:sonictemplate_vim_vars : {}
for var in vars
if exists('V')
unlet V
endif
if has_key(gvars, &ft) && type(gvars[&ft]) == 4 && has_key(gvars[&ft], var)
let V = gvars[&ft][var]
if type(V) == 1 | let val = V | else | let val = string(V) | endif
elseif has_key(gvars, '_') && type(gvars['_']) == 4 && has_key(gvars['_'], var)
let V = gvars['_'][var]
if type(V) == 1 | let val = V | else | let val = string(V) | endif
else
let val = input(var . ": ")
endif
let c = substitute(c, '\V{{\(_input_\|_var_\):'.var.'}}', '\=val', 'g')
let s:vars[ft][var] = val
endfor
let mx = '{{_define_:\([^:]\+\):\(.\{-}\)}}\s*'
while 1
let match = matchstr(c, mx)
if len(match) == 0
break
endif
let var = substitute(match, mx, '\1', 'ig')
let val = eval(substitute(match, mx, '\2', 'ig'))
let c = substitute(c, '{{_define_:' . var . ':\(.\{-}\)}}\s*', '', 'g')
let c = substitute(c, '\V{{_var_:'.var.'}}', '\=val', 'g')
let s:vars[ft][var] = val
endwhile
sandbox let c = substitute(c, '{{_if_:\(.\{-}\);\(.\{-}\)\(;\(.\{-}\)\)\{-}}}', '\=eval(submatch(1))?submatch(2):submatch(4)', 'g')
sandbox let c = substitute(c, '{{_expr_:\(.\{-}\)}}', '\=eval(submatch(1))', 'g')
silent! let c = substitute(c, '{{_lang_util_:\(.\{-}\)}}', '\=sonictemplate#lang#{ft}#util(submatch(1))', 'g')
if len(c) == 0
return
endif
let mx = '{{_filter_:\([a-zA-Z0-9_-]\+\)}}\s*'
let bf = matchstr(c, mx)
if len(bf) > 0
call s:setopt('filter', substitute(bf, mx, '\1', ''))
let c = substitute(c, mx, '', 'g')
endif
if !buffer_is_not_empty
let c = substitute(c, '{{_inline_}}\s*', '', 'g')
if &expandtab || (&shiftwidth && &tabstop != &shiftwidth)
let c = substitute(c, "\t", repeat(' ', &shiftwidth), 'g')
endif
silent! %d _
silent! put = c
silent! normal! ggdd
else
if c[len(c)-1] == "\n"
let c = c[:-2]
endif
if stridx(c, '{{_inline_}}') != -1
let c = substitute(c, '{{_inline_}}', '', 'g')
let c = join(split(c, "\n"), "")
silent! exe "normal! a\<c-r>=c\<cr>"
return
else
let line = getline('.')
let indent = matchstr(line, '^\(\s*\)')
if line !~ '^\s*$'
let lhs = col('.') > 1 ? line[:col('.')-2] : ""
let rhs = line[len(lhs):]
let lhs = lhs[len(indent):]
let c = lhs . c . rhs
endif
let c = indent . substitute(substitute(c, "\n", "\n".indent, 'g'), "\n".indent."\n", "\n\n", 'g')
if len(indent) && (&expandtab || (&shiftwidth && &tabstop != &shiftwidth) || indent =~ '^ \+$')
let c = substitute(c, "\t", repeat(' ', min([len(indent), &shiftwidth])), 'g')
elseif &expandtab || (&shiftwidth && &tabstop != &shiftwidth)
let c = substitute(c, "\t", repeat(' ', &shiftwidth), 'g')
endif
if line('.') < line('$')
silent! normal! dd
endif
silent! put! =c
endif
endif
if stridx(c, '{{_cursor_}}') != -1
if a:mode == 'n'
silent! call search('\zs{{_cursor_}}', 'w')
silent! foldopen
silent! normal! 12"_x
else
silent! call search('{{_cursor_}}\zs', 'w')
silent! foldopen
silent! call feedkeys(repeat("\<bs>", 12))
endif
endif
endfunction
let s:pat = {}
function! sonictemplate#pattern()
if !has_key(s:pat, &ft)
return ''
endif
let line = getline('.')[:col('.')]
for k in keys(s:pat[&ft])
let m = matchstr(line, k)
if len(m) > 0
let ml = matchlist(line, k)
let line = line[:-len(m)-1]
let c = join(s:pat[&ft][k], "\n")
for i in range(1, 9)
let c = substitute(c, '{{$' . i . '}}', ml[i], 'g')
endfor
if line !~ '^\s*$'
let indent = matchstr(line, '^\(\s*\)')
let lhs = col('.') > 1 ? line[:col('.')-2] : ''
let rhs = line[len(lhs):]
let lhs = lhs[len(indent):]
let c = lhs . c . rhs
endif
let c = join(split(c, "\n"), "")
call setline('.', line)
silent! exe "normal! a\<c-r>=c\<cr>"
if stridx(c, '{{_cursor_}}') != -1
silent! call search('{{_cursor_}}\zs', 'w')
silent! foldopen
silent! call feedkeys(repeat("\<bs>", 12))
endif
break
endif
endfor
return ''
endfunction
function! sonictemplate#load_pattern()
let ft = &ft
let tmp = []
for tmpldir in s:tmpldir
let tmp += split(globpath(join([tmpldir, ft], '/'), 'pattern.tpl'), "\n")
endfor
if len(tmp) == 0
return
endif
let s:pat[ft] = {}
for f in tmp
let k = ''
let l = []
for line in add(readfile(f), '__END__')
if line == ''
continue
elseif line !~ '^\t'
if k != ''
let s:pat[ft][k] = l
endif
let k = line
let l = []
else
call add(l, line[1:])
endif
endfor
endfor
endfunction
let &cpo = s:save_cpo
unlet s:save_cpo
" vim:set et:
|