From 6b289bd125cdacc757d5309e933bf5352085c5b1 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 10 Jan 2012 16:49:29 +0000 Subject: [PATCH] added tiling.el and C-\ for cycling between tile configurations (doesn't work in frame with a visible ECB window) --- keybindings.el | 4 ++++ packages.el | 3 +++ 2 files changed, 7 insertions(+) diff --git a/keybindings.el b/keybindings.el index f8111c2..0dd5ec1 100644 --- a/keybindings.el +++ b/keybindings.el @@ -106,6 +106,10 @@ ;; Allow hash to be entered on UK keyboards (global-set-key (kbd "M-3") 'insert-hash) +;; tiling.el related bindings +(when (require 'tiling nil 'noerror) + (define-key global-map (kbd "C-\\") 'tiling-cycle)) + ;; ElScreen related shortcuts (when (require 'elscreen nil 'noerror) diff --git a/packages.el b/packages.el index d13ef8b..789177a 100644 --- a/packages.el +++ b/packages.el @@ -93,6 +93,9 @@ (:name ruby-mode :type svn :url "http://svn.ruby-lang.org/repos/ruby/trunk/misc/") + (:name tiling + :type emacswiki + :features tiling) (:name tree-mode :type emacswiki :features tree-mode)