diff options
| -rw-r--r-- | ravi-init-vc.el | 12 |
1 files changed, 10 insertions, 2 deletions
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) |
