Make function column in profiler report wider

Default was 50 for cpu and 55 for memory; much too small for the stacks
we deal with.
This commit is contained in:
Henrik Lissner 2020-08-07 19:33:10 -04:00
parent eb323bdbb7
commit 673ab37dac
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -171,8 +171,10 @@ or if the current buffer is read-only or not file-visiting."
;; middle-click paste at point, not at click
(setq mouse-yank-at-point t)
;; Enable mouse in terminal Emacs
(add-hook 'tty-setup-hook #'xterm-mouse-mode)
;; Larger column width for function name in profiler reports
(after! profiler
(setf (caar profiler-report-cpu-line-format) 80
(caar profiler-report-memory-line-format) 80))
;;