Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add two install_* keywords that were added in new releases #27

Merged
merged 2 commits into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions meson-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@
("install_headers" :doc "void install_headers(list_of_headers, ...)")
("install_man" :doc "void install_man(list_of_manpages, ...)")
("install_subdir" :doc "void install_subdir(subdir_name, install_dir : ..., exclude_files : ..., exclude_directories : ..., strip_directory : ...)")
("install_emptydir" :doc "void install_emptydir(list_of_dirs, ...)")
("install_symlink" :doc "void install_symlink(link_name, ...)")
("is_disabler" :doc "bool is_disabler(var)")
("is_variable" :doc "bool is_variable(varname)")
("jar" :doc nil)
Expand Down Expand Up @@ -486,6 +488,10 @@
. ("install_dir" "install_mode"))
("install_subdir"
. ("exclude_files" "exclude_directories" "install_dir" "install_mode" "strip_directory"))
("install_emptydir"
. ("install_mode" "install_tag"))
("install_symlink"
. ("install_dir" "install_tag" "pointing_to"))
("jar"
. ,meson--known-jar-kwargs)
("project"
Expand Down Expand Up @@ -949,7 +955,7 @@
(markdown-view-mode))
(local-set-key (kbd "q") 'bury-buffer)
(when (bound-and-true-p evil-mode)
(evil-local-set-key 'normal (kbd "q") 'bury-buffer)))

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (snapshot)

the function ‘evil-local-set-key’ is not known to be defined.

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.2)

the function ‘evil-local-set-key’ is not known to be defined.

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.1)

the function ‘evil-local-set-key’ is not known to be defined.

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.1)

the function ‘evil-local-set-key’ is not known to be defined.

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (snapshot)

the function ‘evil-local-set-key’ is not known to be defined.

Check warning on line 958 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.2)

the function ‘evil-local-set-key’ is not known to be defined.
(let* ((position
(or (meson--search-in-reference-manual identifier)
(user-error "%s not found in Meson reference manual" identifier)))
Expand Down Expand Up @@ -995,7 +1001,7 @@
;;;###autoload
(progn
(add-to-list 'auto-mode-alist '("/meson\\(\\.build\\|_options\\.txt\\)\\'" . meson-mode))
(eval-after-load 'compile

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.3)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.2)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (snapshot)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.1)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.2)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.1)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.1)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (snapshot)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.2)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.3)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (28.2)

`eval-after-load' is for use in configurations, and should rarely be used in packages.

Check warning on line 1004 in meson-mode.el

View workflow job for this annotation

GitHub Actions / build (26.1)

`eval-after-load' is for use in configurations, and should rarely be used in packages.
'(progn
(add-to-list 'compilation-error-regexp-alist 'meson)
(add-to-list 'compilation-error-regexp-alist-alist
Expand All @@ -1005,3 +1011,3 @@
;;; meson-mode.el ends here

;;(progn (mapatoms (lambda (x) (when (string-prefix-p "meson" (symbol-name x)) (makunbound x)))) (eval-buffer))
Loading