ecb-home / ecb

ECB Main Repository
Other
54 stars 11 forks source link

Methods Window incremental search failing in terminal #34

Open sophieburkhardt opened 7 years ago

sophieburkhardt commented 7 years ago

Hi, I have a problem with the incremental search in the methods window. Apparently the mapping of the delete and backspace key is not working, at least in the terminal. After a search that does not find anything, the tree does not expand anymore. I managed to find a workaround, which helps me, not sure if it destroys something else: change the file tree-buffer.el

in tree-buffer-incremental-node-search change (delete backspace) to (?\d) add

(define-key tree-buffer-key-map (kbd "DEL")
         'tree-buffer-incremental-node-search)

instead of

(define-key tree-buffer-key-map [delete]
         'tree-buffer-incremental-node-search)
ware commented 7 years ago

Hey @sophieburkhardt, can you clarify a few things for me?

sophieburkhardt commented 7 years ago

Hi, sorry, I forgot to mention: I run Emacs 24.5.1 with the latest release of ECB on Ubuntu 16.04 LTS