Gary Oberbrunner
Gary Oberbrunner
I'm no expert, but I wonder if this code is responsible for the difference? It seems to deliberately exclude backquote from the auto-close behavior: https://github.com/logseq/logseq/blob/d8bc074be17d3e4c1b780f9ce08e15f2f45193a6/src/main/frontend/handler/editor.cljs#L2877-L2884
One thought: maybe this is like this to make it easier to type the triple-backquote syntax for multiline code blocks? If so, the logic could just get slightly smarter: only...
It's in the latest nightly, and working great for me! Thank you!
The simple reason is when you run `python -m `, python helpfully rewrites sys.argv to contain the full path of the module rather than `-m `. So the reloader can't...
Note that even if I fix (or work-around) that by appending the proper dir to sys.path in server.py, the reloader fails in a different way when it tries to reload...
I'm currently working around this by starting the server from an external `run-server.py` above the app dir: ``` import sys from app.server import main sys.exit(main()) ``` and that works (with...
I'm still having this path-mangling issue with latest direnv in msys2. What was the outcome of #431? Are there any decent workarounds? (hopefully simpler than adding another precmd to un-mangle...
I don't want to hijack this thread, and I understand the difficulties of porting direnv to msys/cygwin, but as a long-time direnv user I wonder if anyone has found a...
Same here -- need this for deploying Google Cloud Functions which always use npm for the cloud build even though I use yarn locally. I currently can't deploy cloud functions...
@SalehChoueib no, I ended up using a different mechanism entirely.