From 57ff6d322d50bd27a50fb124abc4c17f0477c0e3 Mon Sep 17 00:00:00 2001 From: Ravi R Kiran Date: Thu, 26 Dec 2013 20:51:34 -0800 Subject: Avoid magit fullscreen mode diff --git a/ravi-init-vc.el b/ravi-init-vc.el index 28953f6..15335ee 100644 --- a/ravi-init-vc.el +++ b/ravi-init-vc.el @@ -34,8 +34,16 @@ magit-diff-refine-hunk t magit-completing-read-function 'magit-ido-completing-read ) - (require 'fullframe) - (fullframe magit-status magit-mode-quit-window :magit-fullscreen nil) + + ; Since magit-mode-quit-window is used by all magit windows (such as logs), + ; and since mucking with magit's keymap also leads to the same results, we + ; avoid showing magit-status in a fullscreen window until another solution + ; is found. + ;(require 'fullframe) + ;(fullframe magit-status magit-mode-quit-window :magit-fullscreen nil) + + (setq magit-restore-window-configuration t) + (use-package vc-git :defer t :bind ("C-x v f" . vc-git-grep) -- cgit v0.10.1