16 lines
509 B
EmacsLisp
16 lines
509 B
EmacsLisp
;;; funcs.el --- Protobuf Layer functions File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2017 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Amol Mandhane <https://github.com/amol-mandhane>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(defun spacemacs//setup-protobuf-imenu ()
|
|
"Setup imenu regex for protocol buffers."
|
|
(setq
|
|
imenu-generic-expression
|
|
'((nil "^[[:space:]]*\\(message\\|service\\|enum\\)[[:space:]]+\\([[:alnum:]]+\\)" 2))))
|