ambihelical

Results 31 comments of ambihelical

Yes, absolutely. I *can* rebind it, but I think the package should make it easier to avoid having to do this.

I am for sure no better an elisp programmer. But I think you should be able to make a defcustom for the key, with default value of "g~", or (kbd...

I think so. If you are reluctant, I can give it another week of testing at my day job. I did make some minor changes during the week, and I'm...

So far I'm not able to reproduce with a file with 3-space indent (no hard tabs), no .dir-locals.el, and me setting c-basic-offset to 8 in my init.el for cc-mode. It...

Very odd. I'll look at the code further when I get a chance.

I don't see anything that would explain the different behaviours we are seeing. I would check that dtrt-indent-post-local-variable-setup runs for the buffer, maybe the hooks aren't working the way I...

That analysis seems correct. I ran dtrt-indent-mode from a prog-mode hook, which I guess has the right timing for the code in the PR. I'll revise it so it works...

I think tab-width is a red-herring here. I should be using c-basic-offset. I did some experimentation. If I use c-basic-offset, the advice does correctly set dtrt-indent-explicit-offset, however the advice runs...

It looks like the processing that dtrt-indent is doing in define-minor-mode is too early, and probably should be done on a hook, maybe hack-local-variables-hook? Not sure.