mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
20 lines
352 B
Text
20 lines
352 B
Text
|
{:augroup
|
||
|
(fn [name ...]
|
||
|
`(do
|
||
|
(nvim.ex.augroup ,(tostring name))
|
||
|
(nvim.ex.autocmd_)
|
||
|
,...
|
||
|
(nvim.ex.augroup :END)))
|
||
|
|
||
|
:autocmd
|
||
|
(fn [...]
|
||
|
`(nvim.ex.autocmd ,...))
|
||
|
|
||
|
:_:
|
||
|
(fn [name ...]
|
||
|
`((. nvim.ex ,(tostring name)) ,...))
|
||
|
|
||
|
:viml->fn
|
||
|
(fn [name]
|
||
|
`(.. "lua require('" *module-name* "')['" ,(tostring name) "']()"))}
|