tags:

views:

38

answers:

1

How to configure emacs 23.1.1 on osx so that file drag and drop on the emacs window opens the file in a new buffer instead of appending it to the current buffer?

+1  A: 

You can try:

(global-set-key [ns-drag-file] 'ns-find-file)

It works for me on Emacs 23.2.1

Tao Peng