当前位置:  开发笔记 > 开发工具 > 正文

为什么我这样开始iswitchb-mode?

如何解决《为什么我这样开始iswitchb-mode?》经验,为你挑选了1个好方法。

根据emacs信息页面,以下是启用iswitchb-mode的方法:

要启用Iswitchb模式,类型M-x iswitchb-mode,或自定义变量iswitchb-modet

所以我把以下内容放在我的.emacs中:

(setq iswitchb-mode t)

但是,这似乎不起作用.在搜索emacs wiki之后,我发现我需要使用它:

(iswitchb-mode 1)

有人可以解释为什么我需要以这种方式启用它吗?我想更好地了解elisp,而不仅仅是复制和粘贴来自地方的东西.



1> Joe Casadont..:

通常,模式将定义变量和具有相同名称的函数.该函数将在调用时正确设置变量,但它是打开模式的函数,而不仅仅是变量(仅跟踪模式的状态).

在您的具体情况下,您被告知告诉自定义变量,但您只需设置它.不同之处在于,当变量的值发生变化时,custom知道要做某事,而'setq'对此一无所知.如果你看一下这个变量的帮助(Ch v iswitchb-mode),你会得到:

iswitchb-mode is a variable defined in `iswitchb.el'.
Its value is t

Documentation:
Non-nil if Iswitchb mode is enabled.
See the command `iswitchb-mode' for a description of this minor mode.
Setting this variable directly does not take effect;
either customize it (see the info node `Easy Customization')
or call the function `iswitchb-mode'.

You can customize this variable.

推荐阅读
夏晶阳--艺术
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有