/usr/share/vim-scripts/vimplate-templates/Test.tt is in vim-scripts 20130814.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | [% name=input('her name: ') -%]
[% eyescolor=choice('her eyes: ', 'blue', 'green', 'gray', 'black') -%]
[% weekday=choice('which weekday: ', 'Sonnday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday') -%]
[% location=input('your own location: ') -%]
[% ucfirst(location) %], [% date('%b %d, %Y') %]
My Dear [% ucfirst(name) %],
Do you know that I love the color of your [% eyescolor %] eyes?
... bla, ... bla, ... bla
I'm glad to see you on [% weekday %]
Much Love,
[% user.firstname %]
|