According to the emacs info page, here's how you enable iswitchb-mode:
To enable Iswitchb mode, type
M-x iswitchb-mode
, or customize the variableiswitchb-mode
tot
So I put the following in my .emacs:
(setq iswitchb-mode t)
However, this doesn't seem to work. After searching the emacs wiki, I found that I need to use this:
(iswitchb-mode 1)
Could someone explain why I need to enable it this way? I'd like to get a better understanding of elisp rather than just copying and pasting things from places.