Lukas

Results 142 comments of Lukas

I think you're right, as stated on [ctan](https://www.ctan.org/pkg/cluttex): > The main feature of this tool is that it does not clutter your working directory with .aux or .log or other...

@raphaelcastaneda Just one little question (hoping not getting blamed to post as a comment in this issue, I didn't wanted to create a new one, creating lots of question issues...

Thought about starting to implement RSA today. I think the biggest problem with this is that RSA converts the plaintext to an integer and we'll need bigInts (range of lua's...

>> I've got the issue, that you preallocate the tables with the 1000 index (see e.g. [here](https://github.com/L3MON4D3/LuaSnip/blob/c599c560ed26f04f5bdb7e4498b632dc16fb9209/lua/luasnip/session/snippet_collection.lua#L23)). Is this really necessary (I see no reason why)? (it prevents me from...

Small note on `rawset` and `tab[i]` regarding performance: (but doesn't concern us) Just read on a lua discord (tbh, didn't check it on my own) > PUC Lua: rawset is...

Alright, implementing should be done by now so far. Next step should be the benchmarking. L3MON4D3 once suggested doing so as described [here](https://github.com/L3MON4D3/LuaSnip/pull/315#issuecomment-1047661997). Tried this, but the `jit.p` module couldn't...

And on what to benchmark, as far as I understood L3MON4D3, loading (no lazy-load) the snippets from `tests/data/snipmate-snippets/` served well so far, right?

> Maybe LUA_(C)PATH again? Yes this was the problem (again). Thanks for the reminder (this gets a bit annoying, I should think about some nice way to do this automatically).

> Ah, no, I meant the snippets provided by [vim-snippets](https://github.com/honza/vim-snippets), that should be a good number of add_snippets-calls (at least one per file, with quite some snippets each). Ah nice...

I just had a look at [this talk](https://www.youtube.com/watch?v=D53T1Ejig1Q) (of the author of the flamegraph tooling) and it's amazing, you can view the svg in the browser and you'll be able...