Update package headers, fix flycheck errors

This commit is contained in:
Nathan Lovato
2020-02-15 20:25:10 -06:00
parent b6b864e3bf
commit b7584fe1dc
9 changed files with 96 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
;;; gdscript-imenu.el --- Adds imenu support for Godot GDScript. -*- lexical-binding: t; -*-
;;; gdscript-imenu.el --- Imenu support for GDScript -*- lexical-binding: t; -*-
;; Copyright (C) 2020 GDQuest, Free Software Foundation, Inc.
@@ -23,6 +23,11 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Populates imenu with a list of headings: functions and subclasses in the
;; current GDScript buffer.
;;; Code:
(defvar gdscript-imenu-format-item-label-function
@@ -177,3 +182,5 @@ To this:
(gdscript-imenu-create-index))))))
(provide 'gdscript-imenu)
;;; gdscript-imenu.el ends here