Custom Insert
A sublime 2 /3 plugin that can easily insert custom content.
Details
Installs
- Total 583
- Win 390
- Mac 122
- Linux 71
| Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
| Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
sublime-custominsert
A Sublime plugin that can easily insert custom content.It can insert 'copyright',code template,signature,date time or anything else as you want.
Now Sublime 3 is supported.
install
- You can use Package Control to install.
configuration
Custominsert.sublime-keymap:
{
/*Default data*/
"data":{},
/*Default content*/
"content":"Nohting to insert",
/*Default date_format,see https://docs.python.org/2/library/datetime.html#strftime-and-strptime-behavior*/
"date_format":"%Y-%m-%d %H:%M:%S",
/*Default insert position*/
"position":"cursor",
/*custom actions you can define*/
"actions":{
"datetime":{
"content":"{%datetime%}"
},
"copyright":{
"content": {
"default": "/*{{author}}*/",
"php": "<?php{{author}}?>",
"py": "#php{{author}}",
},
"data":{
"author":"yanni4night",
"version":"0.0.1"
}
}
}
}
Default (OSX).sublime-keymap:
[
{ "keys": ["ctrl+c"], "command": "custominsert", "args": {"action":"copyright"} },
{ "keys": ["ctrl+t"], "command": "custominsert", "args": {"action":"datetime"} }
]
syntax
- {%var%}:pre-defined variables.
- {{var}}:custom defined variables in data dict.
pre-defined vars
- year : current year
- filename : file name with ext
- dirname : absolute directory path
- filepath : absolute file path
- datetime : date&time
- platform : 'osx','linux' or 'windows'
- arch : 'x32' or 'x64'
- ext : file ext(without '.',may be empty)
- ip : IP address(may be 'localhost')
- encoding : file encoding(may be Undefined),you can use 'default_encoding' to override Undefined value
- user : name of the user logged in
changelog
- 2015-11-06:content by file ext is supported,'year' supported
- 2015-01-12:sublime 3 is supported
- 2014-09-13:generate menus&commands automatically
- 2014-06-21:modified settings
- 2013-12-30:default_encoding supported
- 2013-11-19:menus supported.
- 2013-11-15:{{}} syntax supported;position custom define supported;multiple actions&position insert supported,more pre-defined supported.
- 2013-11-14:{%%} syntax supported.