Created
April 5, 2019 17:05
-
-
Save mattbeck/cbc72e1dfd1b90f20cb07b931739d963 to your computer and use it in GitHub Desktop.
Drupal t() keybinding for Sublime
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"keys": ["ctrl+super+t"], | |
"command": "insert_snippet", | |
"args": { | |
"contents": "<?php echo t('$SELECTION');?>" | |
}, | |
"context": | |
[ | |
{ "key": "selection_empty", "operator": "equal", "operand": false } | |
] | |
}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment