作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法使 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/
在命令提示符下,当你按下插入按钮时,光标从细条变为粗条,表明它处于覆盖模式,当你再次按下它时,它又变细表明它处于插入模式有什么办法可以在 C# 中执行此操作吗? 编辑:我想知道是否有办法使光标变粗/变
RubyRogues 播客上有人曾经说过“学习 CoffeeScript,因为 CoffeeScript 编写的 javascript 比你更好。”抱歉,不记得是谁说的... 所以,我采用了一个非常简
我是一名优秀的程序员,十分优秀!