junegunn / limelight.vim

:flashlight: All the world's indeed a stage and we are merely players
MIT License
2.36k stars 53 forks source link

Treat code block like a single paragraph #38

Open akarzim opened 7 years ago

akarzim commented 7 years ago

It would be great to have the ability to treat code blocks like a single paragraph.

this is a paragraph

```
# no blank line after backticks

def code_bock
  puts "this is a code block"
end
```

~~~ruby
puts "tilde and language name should be allowed too"
~~~ 

this is another
paragraph

There are two different code block syntaxes in this example.

I'm not sure that g:limelight_bop and g:limelight_eop can do the job…