]> git.wincent.com - pinnacle.git/commit
feat: add Lua implementation
authorGreg Hurrell <greg@hurrell.net>
Mon, 12 Oct 2020 13:37:42 +0000 (15:37 +0200)
committerGreg Hurrell <greg@hurrell.net>
Mon, 12 Oct 2020 13:37:42 +0000 (15:37 +0200)
commit0416b5d049c094eab252e392e8d474888f3aadb5
tree283fa41827a1aea81a809fcb8633e50bc1a4f214
parentae6b03ad7df9a91206827cdf2051adcf61d45a46
feat: add Lua implementation

For use inside Neovim. You can replace calls to the autoloaded Vimscript
function with calls to the Lua implementation; they should be
equivalent.

eg. these two are equivalent:

    :call pinnacle#italicize('Comment')
    :lua require'wincent.pinnacle'.italicize('Comment')
lua/wincent/pinnacle.lua [new file with mode: 0644]