Function: use-package-keyword-index
use-package-keyword-index is a byte-compiled function defined in
use-package-core.el.gz.
Signature
(use-package-keyword-index KEYWORD)
Source Code
;; Defined in /usr/src/emacs/lisp/use-package/use-package-core.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Keywords
;;
(defun use-package-keyword-index (keyword)
(cl-loop named outer
with index = 0
for k in use-package-keywords do
(if (eq k keyword)
(cl-return-from outer index))
(cl-incf index)))