"Diez B. Roggisch" <[EMAIL PROTECTED]> writes: > Hi, > > I really love the new feature that the frame-split into source and compilation > buffer disappears magically when there was no compilation error. > > I would love to see this to be taken a step further: Is it somehow possible to > actually remove the compilation buffer? Or to place it somewhere else in the > buffer-history? I'm usually using the It is possible.
The method jde-compile-finish-kill-buffer takes care of removing the compilation window from the screen. if you add this lines: (run-at-time "3 sec" nil 'kill-buffer (get-buffer-create "*compilation*")) to your jde-compile-finish-kill-buffer method after the lines: (get-buffer-create "*compilation*) it will do what you want. Javier
