Next: insert-findex, Previous: insert-pindex, Up: Custom Indexing Command [Index]
(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)