Skip to content

Jagua/sonictemplate-vim

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sonictemplete-vim

Easy and high speed coding method.

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.

Author:

Yasuhiro Matsumoto <mattn.jp@gmail.com>

Packages

No packages published

Languages

  • Vim Script 49.5%
  • Go 7.8%
  • Perl 7.2%
  • C 7.1%
  • Java 7.0%
  • Makefile 5.3%
  • Other 16.1%