Makoto
Makoto
## Environment * **IntelliJ Rust plugin version:** 0.3.143.3737-203 * **Rust toolchain version:** 1.47.0-nightly (2d8a3b918 2020-08-26) x86_64-unknown-linux-gnu * **IDE name and version:** CLion 2020.3.3 (CL-203.7717.62) * **Operating system:** Linux 4.19.0-14-amd64 *...
It's not good practice to create a `to_string()` method because it shadows the function of the same name that is created by `Display`. I implemented `Display` for the affected structs...
Fixes https://github.com/sfleischman105/Pleco/issues/132. This does not substitute for using safe alternatives over unsafe but it at least allows the code to run. Here's the docs for [core::mem::uninitialized](https://doc.rust-lang.org/core/mem/fn.uninitialized.html).
I tried to use pleco_engine in Arena but it keeps panicking. I'm running it on Debian buster x86-64. Reproduction steps: 1. Compile pleco_engine, add engine to Arena, then load it...
The text editor [EmEditor](https://www.emeditor.com/) recently added EditorConfig support. Is there a criteria for adding an editor to the No Plugin Necessary section? I would like to open a PR to...
I'm having trouble communicating with the language server. I'm testing the connection with this powershell script: ```powershell $str = "Content-Length: 126`r`n`r`n" + '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"processId":30324,"trace":"verbose","rootUri":null,"capabilities":{}}}' echo $str | php "...\vendor\bin\phan" --language-server-on-stdin --allow-polyfill-parser...
**Describe the Bug** When I highlight text in a diff, text in both old and new files are selected. **To Reproduce** Steps to reproduce the behavior: 1. Open a diff...
I believe `md_decode_utf16le_before__()` returns the wrong value. The function is supposed to return the character before the offset. We can compare with the utf8 version [`md_decode_utf8_before__()`](https://github.com/mity/md4c/blob/481fbfbdf72daab2912380d62bb5f2187d438408/src/md4c.c#L921) which returns `CH(off-1)`. Closes...
I believe `md_decode_utf16le_before__()` returns the wrong value. The function is supposed to return the character before the offset. We can compare with the utf8 version [`md_decode_utf8_before__()`](https://github.com/mity/md4c/blob/481fbfbdf72daab2912380d62bb5f2187d438408/src/md4c.c#L921) which returns `CH(off-1)`. I...
I tried to compile winafl, but it failed, and I think it is due to incompatibility with DynamoRIO. ``` PS C:\Users\MakotoEmura\Documents\fuzz-test\winafl\build64> cmake -G"Visual Studio 17 2022" -A x64 .. -DDynamoRIO_DIR=C:\Users\MakotoEmura\Documents\fuzz-test\DynamoRIO-Windows-11.90.20395\cmake...