diff options
author | Alan Pearce | 2013-10-22 15:20:51 +0100 |
---|---|---|
committer | Alan Pearce | 2013-10-22 15:20:51 +0100 |
commit | 63df4b48d2e8017c98c9af35a8a8d31ff7cac78b (patch) | |
tree | 8b32088d66e704c0147b74dc80e092848161c1c4 | |
parent | ae9ebe7419131e020ad39b67dd595cd2d64eed27 (diff) | |
download | nixfiles-63df4b48d2e8017c98c9af35a8a8d31ff7cac78b.tar.lz nixfiles-63df4b48d2e8017c98c9af35a8a8d31ff7cac78b.tar.zst nixfiles-63df4b48d2e8017c98c9af35a8a8d31ff7cac78b.zip |
Emacs: use current frame when handling OSX open-file event
-rw-r--r-- | emacs/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index c56c142a..174438a9 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -1162,3 +1162,6 @@ Also returns nil if pid is nil." ("S-<right>" . windmove-right) ("S-<up>" . windmove-up) ("S-<down>" . windmove-down))) + +(if (eq system-type 'darwin) + (setq ns-pop-up-frames nil)) |