The problem is as follows :
1) This is about a plain .txt file
2) I have enabled the conceal feature and created this syntax file :
set conceallevel=3
syn region cTest conceal start='€£' end='£€'
hi cTest ctermfg=DarkYellow
3) I write first a summary/skeleton of what I want to say, and put it in between €£ and £€. Then, in the same line, I write a lengthier text following the guidelines of the summary. The whole file contains many (>100) lines.
4)The conceal feature works very nicely, except for one point : if the ensuing lines are each, eg, 600 characters long (summary 120, text 480), and if the screen is 80 characters wide, the lines the cursor is not on will display 6 screenlines plus… a void corresponding to the hidden 120 characters.
Q: Is it possible to collapse this void (if I may say so) ?
Thanks (btw I could not find any tutorial on the conceal feature except the Tip #1308, and the "conceal" tag is not accepted by Stack Overflow ...)
ThG