From ac6e159f42014d9bb2bafb4137230e5b6384784f Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 30 Mar 2012 10:48:25 +0100 Subject: [PATCH] Add console-friendly keybindings for textmate-shift-[left|right] --- keybindings.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/keybindings.el b/keybindings.el index 378249a..ffb1924 100644 --- a/keybindings.el +++ b/keybindings.el @@ -87,7 +87,9 @@ (global-set-key (kbd "C-x C-t") 'textmate-goto-file) (global-set-key (kbd "C-c C-t") 'textmate-goto-symbol) (global-set-key (kbd "M-p") 'textmate-column-up) - (global-set-key (kbd "M-n") 'textmate-column-down)) + (global-set-key (kbd "M-n") 'textmate-column-down) + (global-set-key (kbd "C-c [") 'textmate-shift-left) + (global-set-key (kbd "C-c ]") 'textmate-shift-right)) ;; Set/increase/decrease transparency (via helpers.el) (global-set-key (kbd "C-|") 'transparency-set-value)