I sent this problem to the ECB list and didn't get any response. Can any of you help?
I have a function that toggles line wrapping on and off (technically it enables and disables scrolling). This works fine in JDE/Emacs until I load ecb. Once ecb is loaded, calling toggle-line-wrap no longer wraps lines. Does anyone have ideas on how to fix this?
(global-set-key "\C-c$" 'toggle-line-wrap)
(defun toggle-line-wrap()
"toggles line wrap on and off"
(interactive)
(hscroll-mode))
