can one tangle only the current blocks under header or can you only tangle the whole file?the issue is again for dotfiles managed by org that these files are not proper org babel languages and look like this:#+BEGIN_SRC conf :mkdirp yes :tangle ~/.config/mpv/mpv.confsoftvol-max=600#+END_SRCthe manual (http://orgmode.org/manual/Extracting-source-code.html) only shows how to tangle the whole fileany ideas?
With one universal prefix argument, only tangle the block at point.When two universal prefix arguments, only tangle blocks for thetangle file of the block at point.
(defun org-babel-tangle-block()(interactive)(let ((current-prefix-arg '(4)))(call-interactively 'org-babel-tangle)))(eval-after-load "org"'(progn(define-key org-mode-map (kbd "C-c b") 'org-babel-tangle-block)))