18

Is there a way to paste something into the minibuffer?
For example if I want to eval-expression and paste something in there neiter C-v or (obviously p) will work? There has to be a way.

sebastian
  • 417
  • 3
  • 9

1 Answers1

18

C-y does work, but you can also paste into the minibuffer from the default register using dotspacemacs-emacs-leader-key instead of dotspacemacs-leader-key, in which case you can use: leaderre" or leaderrereturn.

Alternatively, you can search and paste the contents from any register: for example leaderre phrase you remember.

Personally, I've just set dotspacemacs-emacs-leader-key to an easily accessible key chord and used it everywhere instead of dotspacemacs-leader-key.

Braham Snyder
  • 360
  • 3
  • 8
  • 1
    I've installed the git layer in spacemacs. When running maggit-clone I'm given a minibuffer asking for the repository URL. `C-y` pastes the `"` buffer for me, but if I try `SPC-r-e-"` in the minibuffer it just says "Whitespace is not allowed here" followed by typing `re"` Any suggestions? – bobpaul May 31 '17 at 17:11
  • @bobpaul I gave incorrect keybindings--thanks for the heads up. I've corrected my answer above. – Braham Snyder May 31 '17 at 17:54