diff --git a/profiles/main/data/keybindings-linux.json b/profiles/main/data/keybindings-linux.json
index 2bbebf3..223df9b 100644
--- a/profiles/main/data/keybindings-linux.json
+++ b/profiles/main/data/keybindings-linux.json
@@ -14,5 +14,21 @@
"text": "
"
},
"when": "editorTextFocus"
+ },
+ {
+ "key": "ctrl+[Minus]",
+ "command": "editor.action.insertSnippet",
+ "when": "editorTextFocus",
+ "args": {
+ "snippet": "\"{{ ${TM_CURRENT_WORD} }}\""
+ }
+ }
+ {
+ "key": "ctrl+shift+v",
+ "command": "editor.action.insertSnippet",
+ "when": "editorTextFocus",
+ "args": {
+ "snippet": "{{ ${CLIPBOARD} }}"
+ }
}
]