Note: this file is auto converted from company-posframe.el by el2org, please do not edit it by hand!!!

目录

  1. company-posframe README
    1. What is company-posframe
    2. How to use company-posframe
    3. Tips
      1. Work better with desktop.el
    4. Note

company-posframe README

What is company-posframe

company-posframe is a company extension, which let company use child frame as its candidate menu.

It has the following feature:

  1. It is fast enough for daily use.
  2. It works well with CJK language.

img

How to use company-posframe

(require 'company-posframe)
(company-posframe-mode 1)

Tips

Work better with desktop.el

The below code let desktop.el not record the company-posframe-mode

(require 'desktop) ;this line is needed.
(push '(company-posframe-mode . nil)
      desktop-minor-mode-table)

Note

company-posframe.el is derived from Clément Pit-Claudel's company-tooltip.el, which can be found at:

company-mode/company-mode#745 (comment)

Some quickhelp functions is come from:

company-quickhelp