From 2b3a9a556796f5ed388aa1a1a296ea62c69708a0 Mon Sep 17 00:00:00 2001 From: Marcus Kammer <2262664-marcuskammer@user.noreply.gitlab.com> Date: Wed, 5 Aug 2020 09:09:49 +0200 Subject: [PATCH] Dont use count-window globally --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index b5bb0321..3f6b7382 100755 --- a/init.el +++ b/init.el @@ -33,7 +33,7 @@ (defun me/split-windows-horizontal () ; Split windows horizontal by equal width (interactive) - (defvar count-windows 3) + (setq count-windows 3) (delete-other-windows) (let ((width (/ (window-total-width) count-windows))) (setq count 0)