Alberto Fanjul
Alberto Fanjul
You're right. That's some quirks from a heavy refactor time ago. To avoid bother user with that ag.vim should care about simple variables as: let g:ag_prg = Meanwhile can you...
Seems we lost that var since 3687b733f60b266f7357dbcf6b3ffdcf28c00ceb. Basically this will work again when https://github.com/albfan/ag.vim/issues/97#issuecomment-435459735 is implemented
In general describe how to build a project is not a task for project itself, as the steps for each OS are different. Just to put an example, these are...
Build on arch linux from source lead to a segfault, so not really sure. Probably point to existing scripts `build_*` would be enough
We can document this and add to extension config if needed
No progress so far, yes.
Basically: ``` var layerControlTree = L.control.layers(base, tree, {collapsed: false}).addTo(map); var collapsed = false $('.leaflet-control-layers').on('click', () => { if (collapsed) layerControlTree.expand(); else layerControlTree.collapse(); collapsed = !collapsed }); ```
Have to add some test for this as it is a tricky implementation easily breakable
This feature aim to a plugin feature for ag.vim. A supposed implementation for definitions/callings: - based on filetype, define a pattern to search callers and callees - Activate postfilter -...