Scott Santucci

Results 72 comments of Scott Santucci

Ah, nevermind, I took a second look at the code, saw the definition of `eitherResIdent` and realized this was overriding `'y'` with `y` if the contents matches an identifier, and...

Judging from playing with the Test program, the printer might also need adjusting to restore the quotes around MyToken. I'll have to take a look at that at whatever point...

I've opened justbur/emacs-which-key#235 regarding using which-key itself as a means of `describe-key`/`helpful-key` discovery, for what it's worth.

Got Ivy/Counsel rather than Helm; nothing unusual that I'm aware of, my customizations are pretty tame (just using the recommended format customization, activating selectable prompt, using helpful as the describing...

Not sure if it was added before or after this request, but it appears `helpful-symbol` is a replacement for `C-h o`. This should work: ```emacs-lisp (global-set-key [remap describe-symbol] #'helpful-symbol) ```

The code at https://emacs.stackexchange.com/a/22466 might be a place to start. As of 26.3 it still works, odd though its approach is. It may be a bit outdated, however; I'm not...

This seems like it may be a more general problem with Cabal and the `build-tool-depends` replacement for `build-tools`: https://github.com/haskell/cabal/issues/7197

> ```js > const script = ''; > … > // https://stackoverflow.com/a/72639251/2089675 > const scriptFragment = document.createRange().createContextualFragment(script); > document.body.appendChild(scriptFragment); > ``` FWIW, this is probably more subtle/advanced than it needs...

From that Stack Overflow question https://stackoverflow.com/q/57209520 : > document['body'].insertAdjacentHTML('afterbegin', `${json}`); From the accepted answer on the same question https://stackoverflow.com/a/57211379 : > From the [official HTML5 spec](https://www.w3.org/TR/2008/WD-html5-20080610/dom.html#innerhtml0): > > > script...

That said, I just tried ES Modules and they seem to work fine in a page served by Neu. If you don't specifically want to embed scripts complete with text...