Skip to content

Instantly share code, notes, and snippets.

@syohex
Created November 22, 2011 08:18
Show Gist options
  • Save syohex/1385168 to your computer and use it in GitHub Desktop.
Save syohex/1385168 to your computer and use it in GitHub Desktop.
womanはデフォルトでは windowを丸々 switchするが, manと同様 window半分だけにするためのコード
; 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)
@syohex
Copy link
Author

syohex commented Nov 22, 2011

switch-bufferのような Cで書かれた関数を一時的に flet等で置き換えようとすると、
挙動が不安定になったので、このような対応を行った。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment