summaryrefslogtreecommitdiffhomepage
path: root/init.org
diff options
context:
space:
mode:
Diffstat (limited to 'init.org')
-rw-r--r--init.org6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.org b/init.org
index f511dc5..189a38f 100644
--- a/init.org
+++ b/init.org
@@ -1083,7 +1083,7 @@
(setq-default indent-tabs-mode nil)
(setq indent-tabs-width 4)
(setq-default default-tab-width 8)
- (setq tab-always-indent t) ;; 'complete
+ (setq tab-always-indent 'complete)
(setq kill-read-only-ok t)
(setq view-read-only nil)
#+end_src
@@ -1329,7 +1329,7 @@
(interactive)
(let ((fw (frame-width)))
(delete-other-windows)
- (cond ((or force (> fw 242))
+ (cond ((or force (>= fw 240))
(let ((w (- (/ fw 3))))
(delete-other-windows)
(split-window-horizontally w)
@@ -1341,7 +1341,7 @@
(defun jao-bisect ()
(interactive)
- (jao-trisect)
+ (jao-trisect t)
(next-window)
(delete-window))
#+END_SRC