Vim
Vim copied to clipboard
Added config options to customise status bar text.
What this PR does / why we need it: Adds settings for customising the status bar mode text.
Overriding normal mode text:
{
"vim.statusBarStrings": {
"normal": "N"
}
}
Overriding with icons:
{
"vim.statusBarStrings": {
"normal": "$(circle-filled)",
"insert": "$(edit)",
"visual": "$(eye)",
"visualblock": "$(eye)$(note)",
"visualline": "$(eye)$(selection)",
"replace": "$(replace)",
"easymotioninput": "$(console)",
"easymotion": "$(diff-renamed)",
"disabled": "$(circle-slash)"
},
}
Which issue(s) this PR fixes #7769
Special notes for your reviewer:
needed this badly, thanks @virtualnaut.