From 673ab37dac534936793c8d89cce40e13bc31634d Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 7 Aug 2020 19:33:10 -0400 Subject: [PATCH] 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. --- core/core-ui.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/core/core-ui.el b/core/core-ui.el index ece7a3a77..b0678de9b 100644 --- a/core/core-ui.el +++ b/core/core-ui.el @@ -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)) ;;