How to display the documentation of the symbol at point Emacs Lisp?
(defunsymbol-description-at-point()"Display documentation of symbol at point."(interactive)(when-let((symbol(symbol-at-point)))(describe-symbolsymbol)))(global-set-key(kbd"C-<f1>")#'symbol-description-at-point)