spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
grazfather 2021-03-10T14:26:41.021300Z

How do I find what might be mapped to some key combo? and how do I see if it’s mapped into certain modes?

grazfather 2021-03-10T14:39:56.021700Z

Hm, SPC h d b, but unfortunately it’s a lot to sift through

grazfather 2021-03-10T14:52:34.022300Z

(Spacemacs) Error in dotspacemacs/user-config: Symbol's value as variable is void: helm-map
So I have a few problems. I don’t understand the above error. What’s wrong with this?

grazfather 2021-03-10T14:52:36.022600Z

(setq-default hybrid-style-enable-hjkl-bindings t)
  (define-key helm-map (kbd "C-n") 'helm-next-line)
  (define-key helm-map (kbd "C-p") 'helm-previous-line)

  ; C-n and C-p to quickly move between open buffers
  (unbind-key (kbd "C-n") evil-mc-key-map)
  (global-set-key (kbd "C-n") 'next-buffer)
  (unbind-key (kbd "C-p") evil-mc-key-map)
  (global-set-key (kbd "C-p") 'previous-buffer)

grazfather 2021-03-10T14:53:30.023Z

I get an error for the help part I don’t understand, and after unbinding the evil-mc binding, there’s another one under it. How do I unbind everything from that key? or do I just have to keep chasing it down. ideally I’d like to overwrite that binding on everythign and then reapply the bindings I want