Char
Char
Thanks, the [playground](http://sourcefoundry.org/hack/playground.html) is nice. What I'm suggesting is that the screenshots in `codeface` are supposed to reflect how the fonts will look, but fonts do not necessarily look the...
:thumbsup: I thought the screenshots was already generated automatically since I found this file [render.py](https://github.com/chrissimpkins/codeface/blob/master/samplecode/render.py) on the repository. Obviously I was not going to suggest generating screenshot for different font...
If you set `autochdir`, that commands above should work because vim current directory == current file directory.
You can also modify the commands above to cd to the current file directory first: ```viml function! Githubroot() let path = trim(system('cd '.shellescape(expand('%:p:h')).' && git rev-parse --show-toplevel')) exe 'FZF '...
You can also use `isdirectory()`. ```viml function! GitFZF() let path = trim(system('cd '.shellescape(expand('%:p:h')).' && git rev-parse --show-toplevel')) if !isdirectory(path) let path = expand('%:p:h') endif exe 'FZF ' . path endfunction...
You'll need to customize the tick locator. For example: ```python from matplotlib.ticker import MultipleLocator fig, axlist = mpl.plot(..., returnfig=True) axlist[0].xaxis.set_minor_locator(MultipleLocator(1)) ``` Note: this is untested code. I don't remember if...
@msampathkumar Sorry it has been too long and I don't have the code anymore. To do most of the customization, most of the time you only need two things: access...
An example on how to add percentage on top/bottom of the candlebars ```python def _add_candlestick_labels(ax, ohlc): transform = ax.transData.inverted() # show the text 10 pixels above/below the bar text_pad =...
Mplfinance code is actually quite compact, you can look at the code directly, at least that is what I have done. It might be a little difficult if you are...
AFAIK only [`set_size_inches`](https://matplotlib.org/api/_as_gen/matplotlib.figure.Figure.html#matplotlib.figure.Figure.set_size_inches) has anything to do with the image size. That code above no matter how big the value you pass should not effect the image size. The default...