TypoScriptr
This plugin provides a tiny helper when editing TypoScript files
Details
Installs
- Total 650
- Win 360
- Mac 186
- Linux 104
Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | Aug 27 | Aug 26 | Aug 25 | Aug 24 | Aug 23 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 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
SublimeTypoScriptr
This plugin provides a tiny helper when editing TypoScript files
Installation
- Clone this repository into your local packages folder. Find out which folder that is via
Preferences -> Browse Packages ...
- Add a key binding to call typoscriptr, do so in
Preferences -> Key Bindings - User
, for example:
[
{ "keys": ["ctrl+enter"], "command": "typoscriptr" }
]
What does it do?
It simply duplicates the current line of code, so TypoScript can be written a little faster.
Example 1
page.10.template = TEMPLATE(cursor)
->
page.10.template = TEMPLATE
page.10.template(cursor)
Example 2
page.10.template = TEMPLATE
page.10.template(cursor)
->
page.10.template = TEMPLATE
page.10.template {
(cursor)
}
Example 3
page.10.subparts.FOOTER = COA
page.10.subparts.FOOTER.10 = TEXT
page.10.subparts.FOOTER.10.value = Blub(cursor)
->
page.10.subparts.FOOTER = COA
page.10.subparts.FOOTER.10 = TEXT
page.10.subparts.FOOTER.10.value = Blub
page.10.subparts.FOOTER.10(cursor)
Example 4 (with text right to the cursor)
lib.customText = TEXT(cursor)Blub
->
lib.customText = TEXT
lib.customText(cursor)Blub
Example 5 (with text right to the cursor)
lib.customText = TEXT
lib.customText(cursor)Blub
->
lib.customText = TEXT
lib.customText {
(cursor)Blub
}