8000 GitHub - mattn/vim-sonictemplate: Easy and high speed coding method
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mattn/vim-sonictemplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>

About

Easy and high speed coding method

Resources

Stars

Watchers

Forks

Sponsor this project

Packages

No packages published

Contributors 29

0