In paragraph 8.4 it says to use: (slime-setup '(inferior-slime-mode))
but then I get a 'Can not open' error.
When using: (slime-setup '(inferior-slime))
I do not get an error.
I would expect that then M-TAB would use slime-complete-symbol, but it uses complete-symbol. Is this an error, or is my expectation wrong?
* Cecil Westerhof [2010-01-02 13:12+0100] writes:
In paragraph 8.4 it says to use: (slime-setup '(inferior-slime-mode))
but then I get a 'Can not open' error.
When using: (slime-setup '(inferior-slime))
Thanks for the note. I fixed it.
I would expect that then M-TAB would use slime-complete-symbol, but it uses complete-symbol. Is this an error, or is my expectation wrong?
TAB is bound to slime-indent-and-complete-symbol. Consulting C-h m is useful to find out such things.
Helmut
Helmut Eller heller@common-lisp.net writes:
I would expect that then M-TAB would use slime-complete-symbol, but it uses complete-symbol. Is this an error, or is my expectation wrong?
TAB is bound to slime-indent-and-complete-symbol. Consulting C-h m is useful to find out such things.
I already stumbled on it. I expected to have the same keys in both modes, but properly there are good reasons why this is not the case. Thanks anyway.