vim-markdown
vim-markdown copied to clipboard
Link hidden even when trying to edit it
If you make a link using markdown syntax, the conceal feature does not unconceal the actual markdown for the link when you're in insert mode inside the link text. This makes it difficult to edit a link after it's been added to the document.
Going into visual mode does unconceal it. Is there a way to unconceal it when the cursor is on the link text, regardless of what mode you're in? Or at least when in insert mode?
What you describe seems ideal.
Does vim allow for this behavior to be implemented?
I solved the problem by adding let g:indentLine_concealcursor = "nc"
into the .vimrc
I solved the problem by adding
let g:indentLine_concealcursor = "nc"
into the .vimrc
This works like a charm. Thank you!
Yes! That it works! Thanks