Next: , Previous: , Up: Custom Indexing Command   [Index]


4.3.3.3 insert-vindex

(defun insert-vindex ()
  "Insert #+vindex: in an Orgmode document."
  (interactive)
  (insert-char #x0a)
  (indent-according-to-mode)
  (insert "#+vindex:"))
(global-set-key (kbd "C-c V") 'insert-vindex)