Closed primeapple closed 2 years ago
In the README there are two versions of jsons, nested with 2 and 3 levels. I understand it that the one with 3 levels has directories as the outermost keys, that enable the projections in the values only in these directories.
However
The following works:
{ "app/components/*.test.jsx": { "type": "test", "alternate": "app/components/{}.jsx" }, "app/components/*.jsx": { "type": "component", "alternate": "app/components/{}.test.jsx" } }
But this one doesnt?
{ "app/components/*": { "app/components/*.test.jsx": { "type": "test", "alternate": "app/components/{}.jsx" }, "app/components/*.jsx": { "type": "component", "alternate": "app/components/{}.test.jsx" } } }
The 3-level version is only for use with g:projectionist_heuristics. Technically, it isn't even JSON, it's VimL.
g:projectionist_heuristics
In the README there are two versions of jsons, nested with 2 and 3 levels. I understand it that the one with 3 levels has directories as the outermost keys, that enable the projections in the values only in these directories.
However
The following works:
But this one doesnt?