有沒有辦法讓光標變成下劃線 - > _而不是盒子?vim中的光標可以更改爲下劃線嗎?
我看過這個thread並試過這些命令,但沒有任何改變。我知道有一個設置的cursorline選項,但這不是我正在尋找的。
布朗尼點,如果你能告訴我如何讓它也閃爍。
有沒有辦法讓光標變成下劃線 - > _而不是盒子?vim中的光標可以更改爲下劃線嗎?
我看過這個thread並試過這些命令,但沒有任何改變。我知道有一個設置的cursorline選項,但這不是我正在尋找的。
布朗尼點,如果你能告訴我如何讓它也閃爍。
這可以影響'guicursor'
選項,cp。 :help 'guicursor'
瞭解詳情。下面讓您在所有模式下閃爍下劃線光標:
:set guicursor=a:hor20-Cursor
這大多隻適用於GVIM。在終端中,您必須找到正確的ANSI轉義序列來切換光標形狀,或者更好的是在終端的設置中重新配置光標。
(In Ubuntu) Definitely, you can change Cursor Shape to I-Beam, Underscore or Block (Default) in VIM :
Step 1: Go the Edit menu in terminal
Step 2: Select the 'Profile Preferences' Option.
A window window will appear...
Step 3: Select 'General' tab into the opened window.
At the bottom of the tab you can find 'Cursor Shape' option.
From here you can change Cursor Shape to I-Beam, Underscore or Block.
試試':help'guicursor''。 – romainl
除非您使用Vim的GUI版本,否則遊標屬性由您的終端軟件決定,而不是Vim本身。 – jwodder