Emanuel Czirai
Emanuel Czirai
> I cant seem to grant the permissions I get Neither user 2000 nor current process has android.permission.GRANT_RUNTIME_PERMISSIONS. Check out the answers to this: https://stackoverflow.com/questions/52079343/how-can-i-use-adb-to-grant-permission-without-root In my case I would...
I get the feeling that this is a more generic bug that once fixed might also fix these two bugs: https://github.com/ziglang/zig/issues/11869 https://github.com/ziglang/zig/issues/12509
Until now, I had no idea what these stages are all about so I found this info [here](https://ikrima.dev/dev-notes/zig/zig-build/#compiler-stages): ``` Compiler Stages# Zig uses multiple compiler stages for bootstrapping the compiler:...
I see that lbrace,rbrace,dbg_stmt are all pointing to the wrong lines(but correct columns), however node_offset points to correct line:column hmmm... If I do this, it fixes the line numbers for...
in `3.5 SELECT / EXTEND MODE`, if I mouse click on `B` of `FOO BAR` then press `b` to get to `F`, because `FOO ` is now selected, then when...
Thank you for this PR, it fixed my use case where my `backupdir=.,~/.local/state/nvim/backup//` and I couldn't `touch newfile` in current dir due to directory permissions (but the file I was...
> The worst cause of the issue for me is however memory fragmentation caused by continuously re-allocating the rows when resizing a terminal containing many history lines. For this I've...
Thank you both for the info. I'm reporting the result with this `tikv_jemallocator`: after 6 million lines of history, the `VIRT is 20.9g` and the `RES is 17.6g`, the **window...
I believe I've found the problem (for my case anyway).\* The problem is that the Vec doubles its capacity every time its previous capacity *gets filled up and needs 1...
> Rust still has the problem of large binaries however even with release mode compared to C or C++ which makes it perhaps unpractical for very embedded devices but I...