Anas sheashaey

Results 19 comments of Anas sheashaey

I get the same error. I installed all packages. ``` $ cat requirements.txt | awk -F= '{print $1}' | while read line; do pip show $line; done | grep -e...

I was going to report this too. `papis-scihub` only downloads the article to the current directory which is great in its own right but, it would be much better if...

until this is improved I use `scihubthis.sh` ``` #!/bin/bash for doi in "$@" do papis scihub "$doi" add papis add "$doi" output.pdf done ``` ``` $ chmod +x scihubthis.sh $...

Hi, I just want to say that building TUIs seems like a good first issue for Rustacean wannabes. I will finish my college exams by the end of March. If...

I'm unfamiliar with compiling C code on Windows and currently don't have access to a Windows machine for testing purposes. My strategy includes segregating `include/windows.h` in the project. I would...

> The Windows code no longer bothers me because now it is highlighted as `Comment` (by `clangd`/`lsp`/`tree-sitter`?). Wait.. That means the code is no longer necessary even on Windows? I...

for now, I will return nvimrserver.c to root and update makefiles accordingly to resolve this conflict.

I'm currently devising a long-term plan to develop a new implementation of nvimrserver, potentially using Lua or Rust. This approach aims to offer users a choice between the original, stable...

I will look into that. I haven't been able to contribute to nvimcom or any of the LSPs/parsers because they assume I understand R internals. The nice thing about nvimrserver...

I would also be happy to pick any low-hanging fruits, such as eliminating outdated backward compatibility features. This will streamline the code and also allow me to familiarize myself with...