你好有没有办法改变原子的插入符样式,就像在崇高的文本3中一样? sublime text 3的方式是在JSON "caret_style": "phase"
有没有办法在原子编辑器中做这样的事情?
答案 0 :(得分:2)
修改.atom/styles.less
(或~/.atom/stylesheet.css
),将以下过渡添加/更新为atom-text-editor .cursor
:
atom-text-editor .cursor {
transition:opacity 0.5s linear;
}
如果您想更新光标速度,可以获得cursor-blink-interval
个包并在.atom/config.cson
中更新以下内容:
'*':
'cursor-blink-interval':
cursorBlinkInterval: 1200
另见block-cursor包