The Wayback Machine - https://web.archive.org/web/20201107021031/https://github.com/mattn/vim-sonictemplate
Skip to content
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
doc
Jan 28, 2020
Jul 1, 2016
Mar 20, 2020
Jul 4, 2016
Oct 27, 2011

README.md

sonictemplate

Easy and high speed coding method.

Template Completion

Postfix Completion

Basic Usage

Open new file

vim foo.pl
:Template <tab>

Then you can select package or script for perl filetype.

:Template package
:Template script

Type <enter> in script, you can see following.

use strict;
use warnings
use utf8;

_

And cursor is in _. If you open lib/Foo.pm, and type <enter> in package. You get following.

package Foo;
use strict;
use warnings
use utf8;

_

1

If you open C++ file, you can select main for C.

License

MIT

Author

Yasuhiro Matsumoto <mattn.jp@gmail.com>

You can’t perform that action at this time.