gpt4 book ai didi

emacs24 - emacs 空行上的细光标

转载 作者:行者123 更新时间:2023-12-01 12:45:08 25 4
gpt4 key购买 nike

有没有办法使 emacs 光标位于空行时成为“更细”的条?如果该行有空格或文本,它应该是默认宽度的 block 光标。这是针对 emacs 24 的。

这是 XEmacs 上的默认光标行为,FWIW。

最佳答案

要根据当前行的内容动态更改光标,请将此添加到您的 .emacs:

(defun cursor-shape-hook ()
(if (equal (thing-at-point 'line) "\n") (setq cursor-type 'bar)
(setq cursor-type 'box)))

(add-hook 'post-command-hook 'cursor-shape-hook)

光标形状的所有可能性是:

nil       don't display a cursor
box display a filled box cursor
hollow display a hollow box cursor
bar display a vertical bar cursor with default width
(bar . WIDTH) display a vertical bar cursor with width WIDTH
hbar display a horizontal bar cursor with default height
(hbar . HEIGHT) display a horizontal bar cursor with height HEIGHT
ANYTHING ELSE display a hollow box cursor

关于emacs24 - emacs 空行上的细光标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20881912/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com