spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
murtaza52 2020-05-24T09:00:38.194500Z

what is the spacemacs shortcut for showing the buffer list - currently I use Ctrl x b, such that I dont have to use Ctrl

spfeiffer 2020-05-24T09:16:04.194800Z

SPC b b?

practicalli-john 2020-05-24T10:08:24.196600Z

@murtaza52 Yes, SPC b b is one of lots of handy commands in the buffer menu https://practicalli.github.io/spacemacs/spacemacs-basics/working-with-projects/managing-buffers.html

murtaza52 2020-05-24T12:52:02.197Z

cool thanks guys

2020-05-24T14:33:06.200700Z

How to peak at what the cpu usage of processes spacemacs has started: 1. SPC a p : will show just emacs processes (no mem or cpu usage) 2. SPC a P : will show everything like bash top command. I'll have to check this when something starts going wrong to be sure it working like i imagine.

practicalli-john 2020-05-24T15:23:57.204400Z

@drewverlee as SPC a p will show you the PIDs of the processes running, then of course those PIDs can be looked up in top or SPC a P , but not exactly joined up. The list-processes seems to be focused on listing and killing processes, which would benefit of having at least cpu and memory usage. The little I found suggests using the Emacs profiler.

2020-05-24T15:25:02.204900Z

gotcha thanks. I'll look into it more as if it keeps being a pain point 🙂.

practicalli-john 2020-05-24T15:41:01.208700Z

The profiler looks very detailed, SPC SPC profiler-start and choose cpu or memory profiliing (or both). Then SPC SPC profiler-report at any time to see the usage by Emacs commands. It does not seem like its showing external processes though, but will show the commands that call them. Another thing to add to my todo list 🙂

👍 1