Skip to content

Commit

Permalink
Now default value of ac-auto-show-menu is 0.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomohiro Matsuyama committed Mar 13, 2010
1 parent 4ceb7a9 commit 04cf352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auto-complete.el
Expand Up @@ -71,7 +71,7 @@
:type 'float
:group 'auto-complete)

(defcustom ac-auto-show-menu t
(defcustom ac-auto-show-menu 0.8
"Non-nil means completion menu will be automatically shown."
:type '(choice (const :tag "Yes" t)
(const :tag "Never" nil)
Expand Down
2 changes: 1 addition & 1 deletion doc/manual.ja.txt
Expand Up @@ -419,7 +419,7 @@ Tips

### 補完メニューを自動で表示しない ###

補完メニューによって集中力が削がれる問題のもう一つの対処としては、補完メニューを表示しないという方法が考えられます。正直なところを言うと、補完メニューを表示しないをデフォルトにしたいのですが、`auto-complete-mode`の補完推測の精度がまだあまり良くないので、現状ではデフォルトで補完メニューを表示するようになっています。補完推測の精度が向上すればインライン補完のみで事足りるので、わざわざ補完メニューを表示する必要はないのです。補完メニューを非表示にするには`ac-auto-show-menu`を`nil`にします。
補完メニューによって集中力が削がれる問題のもう一つの対処としては、補完メニューを表示しないという方法が考えられます。補完メニューを非表示にするには[`ac-auto-show-menu`](#)を`nil`にします。

(setq ac-auto-show-menu nil)

Expand Down
2 changes: 1 addition & 1 deletion doc/manual.txt
Expand Up @@ -415,7 +415,7 @@ And consider to use [trigger key](#Trigger_Key).

### Not to show completion menu automatically ###

There is another approach to solve the annoying problem is that not to show completion menu automatically. Truthfully, we won't show completion menu automatically by default. However a accuracy of candidate suggestion is not good at now, so we show it by default. Getting candidate suggestion more accurate, then there is no need to show completion menu ultimately. Not to show completion menu automatically, set `ac-auto-show-menu` to `nil`.
There is another approach to solve the annoying problem is that not to show completion menu automatically. Not to show completion menu automatically, set [`ac-auto-show-menu`](#) to `nil`.

(setq ac-auto-show-menu nil)

Expand Down

0 comments on commit 04cf352

Please sign in to comment.