จะแสดงภาพซ้อนทับเช่นหน้าจอนี้ได้อย่างไร


คำตอบ:


8

แน่นอนว่ามันใช้งานการวางซ้อนทับกัน โดยเฉพาะ - ใช้'after-stringคุณสมบัติเพื่อแสดงเอกสาร (ดู: คุณสมบัติการซ้อนทับ )

หากคุณตรวจสอบฟังก์ชั่นcompany-coq--show-definition-overlay-at-point(เช่น: ผ่านM-x find-function) คุณสามารถดูได้ว่ามันถูกสร้างขึ้นอย่างไร:

(setq company-coq-definition-overlay (make-overlay ins-pos ins-pos))
(overlay-put company-coq-definition-overlay 'after-string ins-str)

การอ้างอิงถึงภาพซ้อนทับจะถูกเก็บไว้company-coq-definition-overlayเพื่อให้ง่ายต่อการลบภาพซ้อนทับในภายหลัง:

(delete-overlay company-coq-definition-overlay)
(setq company-coq-definition-overlay nil)

ด้วย(overlay-put OVERLAY 'after-string STR)ไม่มีแบบอักษรเหมือนกับ screencast
stardiviner

@stardiviner คุณสงสัยเกี่ยวกับตัวละคร / สี / สไตล์ที่เฉพาะเจาะจงหรือไม่? คุณสามารถใช้ edebug เพื่อตรวจสอบสายในins-str company-coq--show-definition-overlay-at-pointใบหน้าและสไตล์เฉพาะจะมีอยู่เป็นคุณสมบัติข้อความในสตริงนั้น คุณสมบัติข้อความ: คุณสมบัติพิเศษเป็นการอ้างอิงที่มีประโยชน์สำหรับการถอดรหัสคุณสมบัติเหล่านั้น
ebpa

1
(defvar inline-docs-overlay nil)

(defgroup inline-docs nil
  "Show inline contextual docs in Emacs."
  :group 'docs)

(defcustom inline-docs-border-symbol ?―
  "Specify symbol for inline-docs border."
  :group 'inline-docs)

(defcustom inline-docs-prefix-symbol ?\s
  "Specify symbol for inline-docs prefix."
  :group 'inline-docs)

(defcustom inline-docs-indicator-symbol "➜"
  "Specify symbol for inline-docs indicator."
  :group 'inline-docs)

(defface inline-docs-face
  '((t (:inherit italic)))
  "Face for `inline-docs-mode'."
  :group 'inline-docs)

(defface inline-docs-border-face
  '((t (:inherit font-lock-doc-face)))
  "Face for inline docs border lines."
  :group 'inline-docs)

(defface inline-docs-prefix-face
  '((t (:inherit default)))
  "Face for inline docs prefix."
  :group 'inline-docs)

(defface inline-docs-indicator-face
  '((t (:inherit font-lock-doc-face)))
  "Face for inline docs indicator."
  :group 'inline-docs)

(defun inline-docs--clear-overlay ()
  "Clear inline-docs overlays."
  (when (overlayp inline-docs-overlay)
    (delete-overlay inline-docs-overlay))
  (remove-hook 'post-command-hook 'inline-docs--clear-overlay))

(defun inline-docs--string-display-next-line (string apply-face)
  "Show STRING contents below point line until next command with APPLY-FACE."
  (let* ((border-line (make-string (window-body-width) inline-docs-border-symbol))
         (prefix (make-string
                  (if (= (current-indentation) 0) ; fix (wrong-type-argument wholenump -1) when current indentation is 0 minus 1 will caused wholenump exception.
                      (current-indentation)
                    (- (current-indentation) 1))
                  inline-docs-prefix-symbol))
         (str (concat (propertize border-line
                                  'face 'inline-docs-border-face)
                      "\n"
                      prefix
                      (propertize (concat inline-docs-indicator-symbol " ")
                                  'face 'inline-docs-indicator-face)
                      (copy-sequence string) ; original eldoc string with format.
                      "\n"
                      (propertize border-line
                                  'face 'inline-docs-border-face)
                      "\n"
                      ))
         start-pos end-pos)
    (unwind-protect
        (save-excursion
          (inline-docs--clear-overlay)
          (forward-line)
          (setq start-pos (point))
          (end-of-line)
          (setq end-pos (point))
          (setq inline-docs-overlay (make-overlay start-pos end-pos (current-buffer)))
          ;; change the face
          (if apply-face
              (overlay-put inline-docs-overlay 'face 'inline-docs-face))
          ;; hide full line
          ;; (overlay-put inline-docs-overlay 'display "")
          ;; (overlay-put inline-docs-overlay 'display :height 20)
          ;; pre-pend indentation spaces
          ;; (overlay-put inline-docs-overlay 'line-prefix prefix)
          ;; auto delete overlay
          (overlay-put inline-docs-overlay 'evaporate t)
          ;; display message
          (overlay-put inline-docs-overlay 'before-string str))
      (add-hook 'post-command-hook 'inline-docs--clear-overlay))))

(defun inline-docs-display-docs-momentary (format-string &rest args)
  "Display inline docs FORMAT-STRING under point with extra ARGS."
  (when format-string
    (inline-docs--string-display-next-line
     (apply 'format format-string args)
     t)))

;;;###autoload
(defalias 'inline-docs 'inline-docs-display-docs-momentary)

ฉันสร้าง repo สำหรับสิ่งนี้https://github.com/stardiviner/inline-docs.el และโมดูลที่ใช้inline-docs.elสำหรับ eldoc https://github.com/stardiviner/eldoc-overlay-mode


มันจะดีที่มีโมดูลวัตถุประสงค์ทั่วไปซึ่งสามารถใช้ไม่เพียง แต่สำหรับ eldoc แต่ยังเป็น "modeline quickinfo" อื่น ๆ ด้วย
พฤหัสบดีที่

ฉันเห็นฉันจะสร้างโหมดทั่วไปสำหรับสิ่งนี้จากนั้นสร้างโหมดแยกต่างหากสำหรับ eldoc
stardiviner
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.