Matus Goljer
Matus Goljer
I think this was/is a but since the beginning. The code uses `before-string` which should only appear *before* the folder region (overlay) but if the text is also made invisible...
I have a bit of a mental problem with this, because if your function does not depend on the arguments, it must operate by side-effect which makes it "non-functional" (pun...
I'm thinking, we could call it `-with-args-ignored` or something like that, that would fit nicely with the Emacs "convention" of `with-` prefix for things which temporarily or locally modify some...
Hm, that's a reasonable point, I think you're right with the macros... but I don't particularly like the `-ignore` suffix. To me this is conceptually very similar to const, as...
Maybe something like `-amplify` where you take an N-ary function, turn it into variable arg function, and just pass the first N arguments to it and throw away the rest...
The core here is that you give it a function with `n` arguments and turn it into a function with `m` arguments, so I find the prominence of `ignore` a...
@Wilfred Yea, I might be the only person but I actually prefer the old style... it seems way more readable and to the point /shrug
There's a task opened for that already somewhere. We wanted to do this but haven't found a good way to do it.
`--map` works because it uses `mapcar`. Some functions in dash which just do indirection for the sake of API will work, but most will not. You should rather not rely...
Hm, the duplicate #43 is already closed. Maybe you could use `seq` too for when you need vectors. I don't mind having this opened but we will probably not act...