2010-09-29 96 views

回答

0

有這個特殊的功能:

自定義組,其他窗口是 `CUS-edit.el的 互動編譯Lisp函數」。

(自主的基團的其他窗口 &可選GROUP)

自定義組,它必須是一個 定製烷基,在另一個 窗口。

+0

我知道這個功能。但點擊菜單中的自定義將運行'customize-group'而不是'customize-group-other-window'。我想'customize-group'是'customize-group-other-window'的別名 – MDCore 2010-09-30 09:23:23

0

special-display-regexps

有可能工作一對夫婦的選擇:

  1. 指定像(REGEXP FRAME-PARAMETERS)(same-frame . t)的條目。我不知道這是否會使用不同的窗口(與(same-window . t)相反)。

  2. 指定類似(REGEXP FUNCTION OTHER-ARGS)的條目,其中FUNCTION參數爲customize-group-other-window。它通常使用一個新的框架,所以你也可以使用special-display-function

0

如果使用專用窗口*Help*然後點擊Customize鏈接將始終使用另一個窗口。

1

你說:

我知道該功能。但點擊菜單中的自定義運行customize-group而不是customize-group-other-window。我想customize-group成爲customize-group-other-window一個別名 - MDCore 09月30日在'10 9:23

如果這真的是你想要什麼,然後就去做:

(defalias 'customize-group 'customize-group-other-window) 

但我猜你並非真的想要別名命令,而是您只是想重新映射鍵綁定。如果是這樣的話,這就是答案:

(global-set-key [remap customize-group] 'customize-group-other-window) 

重新映射是註定要customize-group所有「鑰匙」,包括菜單項Options>Customize>Customize Group,指揮customize-group-other-window