limelight.vim icon indicating copy to clipboard operation
limelight.vim copied to clipboard

Treat code block like a single paragraph

Open akarzim opened this issue 9 years ago • 0 comments

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…

akarzim avatar Nov 08 '16 14:11 akarzim

You can use the same arguments for :GV as for git log.

:GV XXX becomes:

git log --color=never --date=short --format='%cd %h%d %s (%an)' XXX --graph

In the shell you can use git log -g stash.

So, theoretically, :GV -g stash would work, but unfortunately -g is incompatible with --graph. :(

mhinz avatar May 15 '19 17:05 mhinz

@mhinz Hmm, I didn't know this, but makes sense. I can pass in the stash string as an argument to :GV command and can then see the stash commits. The bummer is that this doesn't work with the :GV! and :GV? commands, which have become super useful to me. Thanks for the info though.

blkwtkns avatar May 15 '19 17:05 blkwtkns