Days ago I discovered that exists org-paste-subtree, but the
functionality that I like is when you pass it C-u two times
I discovered that this shortcut is available, and sometimes I want to
paste subtrees in the same level as the previous (C-c C-x C-y), and
sometimes I want to inject them as subtree
I feel this shortcut is nice for that, and I want to share if you
consider to add it to default orgmode, that keybinding is available
(add-hook 'org-mode-hook
(lambda ()
(local-set-key (kbd "C-c C-x M-y") (lambda () (interactive)
(funcall 'org-paste-subtree '(16))))))