Results 12 comments of Eugene Ha

@sivakov512: You can "fontify" decorators by adding a regular expression for them to the keyword list for font locking. (This has nothing to do with Nord theme, specifically, cf. docs...

I’d be glad to submit a PR (though I won’t be able to get around to that until the weekend). Thanks for the 👕 offer :)

In the meantime, a more robust regex to identify decorators: ```emacs-lisp (add-hook 'python-mode-hook (lambda () (font-lock-add-keywords nil '(("^[[:space:]]*\\(@[^(#[:space:]\n]*\\)" 1 'font-lock-preprocessor-face))))) ```

@arcticicestudio, unfortunately, I won't have time to submit a PR. Sorry.

@jimhester I hope I am not adding noise to this discussion, but what about the following scenarios, where it would be desirable to temporarily switch off memoisation (while retaining the...

@jefferys I see your point, but that procedure won't work in general, unfortunately. You have removed the binding named `sum` from the global environment, but `sum` remains in scope from...

@jefferys In your example, you reassign `sum` to memoised-`sum`, then remove it, then rememoise. What I meant is that if you carried out that procedure for a user-defined function in...

This is an issue in the [repr](https://github.com/IRkernel/repr) package, which circumvents dispatching `print` to the proper method when the object class is `"function"`. As a workaround, one can explicitly invoke `print()`.

Implement and export `repr::repr_html` methods for Gestalt's function classes.

Initial implementation: ```R # repr/R/utils.r: html_escape