Created
November 22, 2011 08:18
-
-
Save syohex/1385168 to your computer and use it in GitHub Desktop.
womanはデフォルトでは windowを丸々 switchするが, manと同様 window半分だけにするためのコード
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; spliting window when opening woman buffer | |
(defadvice woman-really-find-file (around woman-split-window activate) | |
(switch-to-buffer-other-window (get-buffer-create "*woman-dummy*")) | |
ad-do-it) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
switch-bufferのような Cで書かれた関数を一時的に flet等で置き換えようとすると、
挙動が不安定になったので、このような対応を行った。