Skip to content

Instantly share code, notes, and snippets.

@mattbeck
Created April 5, 2019 17:05
Show Gist options
  • Save mattbeck/cbc72e1dfd1b90f20cb07b931739d963 to your computer and use it in GitHub Desktop.
Save mattbeck/cbc72e1dfd1b90f20cb07b931739d963 to your computer and use it in GitHub Desktop.
Drupal t() keybinding for Sublime
[
{
"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