[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] master 8db62bf 17/24: Make *LV* window fixed size
From: |
Oleh Krehel |
Subject: |
[elpa] master 8db62bf 17/24: Make *LV* window fixed size |
Date: |
Fri, 01 May 2015 14:27:19 +0000 |
branch: master
commit 8db62bff7a3fd9f90fa8e68de8bcd82131a925bc
Author: Oleh Krehel <address@hidden>
Commit: Oleh Krehel <address@hidden>
Make *LV* window fixed size
* lv.el (lv-window): Prevent `balance-windows' and the like from messing
things up.
(lv-message): Bind `window-size-fixed' to nil for
`fit-window-to-buffer'.
Fixes #64
---
lv.el | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/lv.el b/lv.el
index f03e73b..4634757 100644
--- a/lv.el
+++ b/lv.el
@@ -68,6 +68,7 @@ Only the background color is significant."
(switch-to-buffer buf)
(switch-to-buffer "*LV*")
(set-window-hscroll lv-wnd 0)
+ (setq window-size-fixed t)
(setq mode-line-format nil)
(setq cursor-type nil)
(set-window-dedicated-p lv-wnd t)
@@ -96,7 +97,8 @@ Only the background color is significant."
(propertize "\n" 'face 'lv-separator 'line-height t)))
(setq-local window-min-height n-lines)
(setq truncate-lines (> n-lines 1))
- (let ((window-resize-pixelwise t))
+ (let ((window-resize-pixelwise t)
+ (window-size-fixed nil))
(fit-window-to-buffer nil nil 1)))
(goto-char (point-min)))))
- [elpa] master 1601991 07/24: Fix the regex once more and add test, (continued)
- [elpa] master 1601991 07/24: Fix the regex once more and add test, Oleh Krehel, 2015/05/01
- [elpa] master c43e1cf 08/24: Add `lv-delete-window' function, Oleh Krehel, 2015/05/01
- [elpa] master b9d0687 09/24: Update `outline-regexp' and `indent-tabs-mode' file locals, Oleh Krehel, 2015/05/01
- [elpa] master 01248b1 10/24: Use one less ; for local vars, Oleh Krehel, 2015/05/01
- [elpa] master 00d2c0c 11/24: Add lv-force-update, Oleh Krehel, 2015/05/01
- [elpa] master 824f105 12/24: Optionally separate lv window and echo area using a thin line, Oleh Krehel, 2015/05/01
- [elpa] master dd02b16 13/24: .dir-locals.el: Add, Oleh Krehel, 2015/05/01
- [elpa] master bf48e63 14/24: lv.el (lv-force-update): Be nil by default, Oleh Krehel, 2015/05/01
- [elpa] master 0ae560a 15/24: lv.el (lv-message): Use `lv-use-separator', Oleh Krehel, 2015/05/01
- [elpa] master 270c38b 16/24: Add a work-around for pop-to-buffer / dedicated bug, Oleh Krehel, 2015/05/01
- [elpa] master 8db62bf 17/24: Make *LV* window fixed size,
Oleh Krehel <=
- [elpa] master 6524a2c 19/24: hydra.el (hydra-fontify-head-default): Fixup, Oleh Krehel, 2015/05/01
- [elpa] master 319ac87 20/24: hydra.el (hydra-key-format-spec): Declare obsolete, Oleh Krehel, 2015/05/01
- [elpa] master c78367f 21/24: hydra.el (hydra-cell-format): Change to defvar, Oleh Krehel, 2015/05/01
- [elpa] master 2bc9146 22/24: hydra.el: Use add/remove-function. Fix warning., Oleh Krehel, 2015/05/01
- [elpa] master 370a862 18/24: Repurpose `hydra--complain' for debugging, Oleh Krehel, 2015/05/01
- [elpa] master 1380f8c 23/24: hydra.el: Bump version, Oleh Krehel, 2015/05/01
- [elpa] master fddedd2 24/24: Merge commit '1380f8c1a51f31514125a08f632d017cdfb8e26e' from hydra, Oleh Krehel, 2015/05/01