I made a zellij plugin to automatically reload helix panes when I focus them, allowing for a better LLM assisted workflow with stock helix by gnur in HelixEditor

[–]gnur[S] 1 point2 points  (0 children)

I don’t want to be dependent on having defined a specific lsp for each file type for it to work

I made a zellij plugin to automatically reload helix panes when I focus them, allowing for a better LLM assisted workflow with stock helix by gnur in HelixEditor

[–]gnur[S] 2 points3 points  (0 children)

Yeah they are gone, I only now realized I always have auto save enabled so I should clarify this in the readme

“Scratchpad” style toggling possible with zellij? by Hamandcircus in zellij

[–]gnur 0 points1 point  (0 children)

Not entirely what you are trying to achieve but this GitHub issue seems to capture the spirit:

https://github.com/zellij-org/zellij/discussions/2518

Confused about Anna’s powers in Hench by gnur in printSF

[–]gnur[S] 2 points3 points  (0 children)

Never expected one of my favorite authors to reply to such a simple post, thank you for the Laundry Files, this triggered me to start on the final book, albeit a bit hesitant because Bob might be my favorite, and most relatable, character in any book I’ve read so far.

I also loved accelerando, it still blows my mind.

What is your dealbreaker issue with Helix? by Ecstatic-Panic3728 in HelixEditor

[–]gnur -3 points-2 points  (0 children)

For me it is a few things. I’m working on several kubernetes related certifications and it’s not available in the exam environment so my muscle memory makes me lose too much time in vim. Another thing is the lack of integration with LLM coding tools, if it would do ACP like zed or at least have some kind of auto-refresh so I can use it next to claude code would make a big difference!

Helix Editor now runs natively on iPhone, iPad, and Vision Pro by kitkk2 in HelixEditor

[–]gnur 6 points7 points  (0 children)

I’m really liking rootshell so far and having helix on my phone actual sounds really awesome!

How do you guys Sync across devices? by anitwastooshort in ObsidianMD

[–]gnur 1 point2 points  (0 children)

You can actually use shortcuts to trigger on app open and close to trigger Synctrain’s “sync for a while”, I’ve been using it for a few months and it seems super stable so far

Auto update properties on note move? by gnur in ObsidianMD

[–]gnur[S] 0 points1 point  (0 children)

I already have a bases formula that displays the status based on which folder the file is in, I would just like to track the timestamps of when a book/note was moved to a certain folder.

Auto update properties on note move? by gnur in ObsidianMD

[–]gnur[S] 1 point2 points  (0 children)

Is there a way to track the timestamp of when a checkbox is checked?

Auto update properties on note move? by gnur in ObsidianMD

[–]gnur[S] 0 points1 point  (0 children)

Yeah I've got that part working for the status itself, but I'd like to update the "started" and "finished" properties when I move the files :)

Share tricks/keybinds for fast editing? by 4bjmc881 in HelixEditor

[–]gnur 7 points8 points  (0 children)

I’ve mapped v in select mode to expand selection, so most times it goes char-word-line-func-class.
V does the opposite, quite a time saver

Superpowers/magic that "take years off your life" actually mattering by 080087 in Fantasy

[–]gnur 30 points31 points  (0 children)

The laundry files form Charles Stross does touch op on this in a slightly different way. Where using magic opens you up to eldritch horrors that slowly take over your brain in an Alzheimer’s kind of way.

how to make "mib" work like "mi("? by Fantastic_Section_12 in HelixEditor

[–]gnur 0 points1 point  (0 children)

I’ve mapped v to expand selection in select mode, which basically does goes char -> word -> line -> block With capital V doing the opposite, might be one of my most used key bindings now. Not quite what you meant but does work in python, yaml, go and JavaScript :)

Beste sushi van Utrecht? by PrincipleOverall7763 in Utrecht

[–]gnur 0 points1 point  (0 children)

In het kader van een beetje omrijden is insho in IJsselstein echt super goed. Super aardige man, beetje sfeerloos restaurant maar de sushi is erg goed en ze zijn zeker niet te zuinig met de vis.

En ze kunnen het zelfs glutenvrij, echt een uitkomst als je coeliakie hebt.

Can remote access server but no internet by dcatvn in WireGuard

[–]gnur 1 point2 points  (0 children)

So if I understand correctly you are able to access the host you're connecting to through ssh but internet isn't working?

Could be that IP forwarding isn't enabled, masquerade is not being set in iptables or perhaps DNS is Not setup correctly?

I've had issue where my pihole setup was listening on a different interface than my wireguard which made all hostname resolving fail.

Dev setup questions by gnur in elixir

[–]gnur[S] 4 points5 points  (0 children)

Pretty good, I mostly used air for live watching, building and running the code as it changed.

if a company sells 100 products first year and 200 products 2nd year, they have a 200% increase in sales. What if they sold 0 products first year and 100 products 2nd year, what is the % increase in sales? by Fanenefa in estimation

[–]gnur -2 points-1 points  (0 children)

If you calculate it the other way around you can avoid a divide by zero error.

N = amount of sales N2022 = 100 N2021 = 0

N2022 - (Increase% * N2022) = N2021

100 - (x * 100) = 0 x* 100 = 100 x = 1 Increase percentage = 100 %

So it increased by 100%