1

I'm facing the problem while displaying the markdown file content.

When i opens the .md file in vim , it just displays few lines

and there is s bottom bar which display line info,rest of the lines of the files are not visible.

enter image description here

I have this in .vimrc

au BufRead,BufNewFile *.md set filetype=markdown

Any idea what is the problem here ?

2
  • That line doesn't make any difference to my vim behaviour. Do you have any plugins installed which might be related?
    – muru
    Commented Nov 6, 2014 at 7:52
  • i have other plugin installed , not any related to markdown.
    – user10607
    Commented Nov 6, 2014 at 7:54

1 Answer 1

3

It seems that the file is folded; in that case moving on the line 2 and pressing za (or zA for recursively opening folds) should work.

If this is the case, there are tips here to set-up vim in order to decide how to fold files.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .