mirror of
https://github.com/zoriya/virtcolumn.nvim.git
synced 2026-06-06 18:22:09 +00:00
Merge pull request #5 from lukas-reineke/develop
This commit is contained in:
@@ -42,12 +42,6 @@ require("virt-column").setup()
|
|||||||
|
|
||||||
Please see `:help virt-column.txt`for more details and all possible values.
|
Please see `:help virt-column.txt`for more details and all possible values.
|
||||||
|
|
||||||
You probably want to clear the old `ColorColumn` highlight if you use this.
|
|
||||||
|
|
||||||
```vim
|
|
||||||
highlight clear ColorColumn
|
|
||||||
```
|
|
||||||
|
|
||||||
## Thanks
|
## Thanks
|
||||||
|
|
||||||
Thank you @francium for the idea.
|
Thank you @francium for the idea.
|
||||||
|
|||||||
+4
-1
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Author: Lukas Reineke <lukas.reineke@protonmail.com>
|
Author: Lukas Reineke <lukas.reineke@protonmail.com>
|
||||||
Version: 1.0.0
|
Version: 1.1.0
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
CONTENTS *virt-column.nvim*
|
CONTENTS *virt-column.nvim*
|
||||||
@@ -71,6 +71,9 @@ char *virt-column-char*
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
4. CHANGELOG *virt-column-changelog*
|
4. CHANGELOG *virt-column-changelog*
|
||||||
|
|
||||||
|
1.1.0
|
||||||
|
* Clear |hl-ColorColumn| on setup
|
||||||
|
|
||||||
1.0.0
|
1.0.0
|
||||||
* First release
|
* First release
|
||||||
|
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ M.setup = function(config)
|
|||||||
|
|
||||||
vim.cmd [[command! VirtColumnRefresh lua require("virt-column").refresh()]]
|
vim.cmd [[command! VirtColumnRefresh lua require("virt-column").refresh()]]
|
||||||
vim.cmd [[highlight link VirtColumn Whitespace]]
|
vim.cmd [[highlight link VirtColumn Whitespace]]
|
||||||
|
vim.cmd [[highlight clear ColorColumn]]
|
||||||
|
|
||||||
vim.cmd [[
|
vim.cmd [[
|
||||||
augroup VirtColumnAutogroup
|
augroup VirtColumnAutogroup
|
||||||
|
|||||||
Reference in New Issue
Block a user