aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/git-rebase.el1
-rw-r--r--lisp/magit-diff.el3
-rw-r--r--lisp/magit-log.el2
-rw-r--r--lisp/magit-mode.el1
-rw-r--r--lisp/magit-process.el1
-rw-r--r--lisp/magit-reflog.el1
-rw-r--r--lisp/magit-refs.el1
-rw-r--r--lisp/magit-repos.el1
-rw-r--r--lisp/magit-section.el1
-rw-r--r--lisp/magit-stash.el2
-rw-r--r--lisp/magit-status.el1
-rw-r--r--lisp/magit-submodule.el1
12 files changed, 16 insertions, 0 deletions
diff --git a/lisp/git-rebase.el b/lisp/git-rebase.el
index 92a4b43..6f4af50 100644
--- a/lisp/git-rebase.el
+++ b/lisp/git-rebase.el
@@ -705,6 +705,7 @@ Rebase files are generated when you run \"git rebase -i\" or run
`magit-interactive-rebase'. They describe how Git should perform
the rebase. See the documentation for git-rebase (e.g., by
running \"man git-rebase\" at the command line) for details."
+ :interactive nil
:group 'git-rebase
(setq comment-start (or (magit-get "core.commentChar") "#"))
(setq git-rebase-comment-re (concat "^" (regexp-quote comment-start)))
diff --git a/lisp/magit-diff.el b/lisp/magit-diff.el
index b193358..5ad8786 100644
--- a/lisp/magit-diff.el
+++ b/lisp/magit-diff.el
@@ -1961,6 +1961,7 @@ Staging and applying changes is documented in info node
\\[magit-reverse] to reverse it.
\\{magit-diff-mode-map}"
+ :interactive nil
:group 'magit-diff
(magit-hack-dir-local-variables)
(setq magit--imenu-item-types 'file))
@@ -2557,6 +2558,7 @@ Staging and applying changes is documented in info node
\\[magit-reverse] to reverse it.
\\{magit-revision-mode-map}"
+ :interactive nil
:group 'magit-revision
(magit-hack-dir-local-variables))
@@ -2903,6 +2905,7 @@ Refer to user option `magit-revision-insert-related-refs-display-alist'."
(define-derived-mode magit-merge-preview-mode magit-diff-mode "Magit Merge"
"Mode for previewing a merge."
+ :interactive nil
:group 'magit-diff
(magit-hack-dir-local-variables))
diff --git a/lisp/magit-log.el b/lisp/magit-log.el
index 831c18f..c50eb4d 100644
--- a/lisp/magit-log.el
+++ b/lisp/magit-log.el
@@ -1060,6 +1060,7 @@ Type \\[magit-cherry-pick] to apply the commit at point.
Type \\[magit-reset] to reset `HEAD' to the commit at point.
\\{magit-log-mode-map}"
+ :interactive nil
:group 'magit-log
(magit-hack-dir-local-variables)
(setq magit--imenu-item-types 'commit))
@@ -1789,6 +1790,7 @@ to visit the commit at point.
Type \\[magit-cherry-pick] to apply the commit at point.
\\{magit-cherry-mode-map}"
+ :interactive nil
:group 'magit-log
(magit-hack-dir-local-variables)
(setq magit--imenu-group-types 'cherries))
diff --git a/lisp/magit-mode.el b/lisp/magit-mode.el
index c7b240b..62881d2 100644
--- a/lisp/magit-mode.el
+++ b/lisp/magit-mode.el
@@ -553,6 +553,7 @@ to the kill ring."
"Parent major mode from which Magit major modes inherit.
Magit is documented in info node `(magit)'."
+ :interactive nil
:group 'magit
(magit-hack-dir-local-variables)
(face-remap-add-relative 'header-line 'magit-header-line)
diff --git a/lisp/magit-process.el b/lisp/magit-process.el
index 7c16b1a..ae2bf1f 100644
--- a/lisp/magit-process.el
+++ b/lisp/magit-process.el
@@ -309,6 +309,7 @@ Used when `magit-process-display-mode-line-error' is non-nil."
(define-derived-mode magit-process-mode magit-mode "Magit Process"
"Mode for looking at Git process output."
+ :interactive nil
:group 'magit-process
(magit-hack-dir-local-variables)
(setq magit--imenu-item-types 'process))
diff --git a/lisp/magit-reflog.el b/lisp/magit-reflog.el
index 751a2e0..cb6c227 100644
--- a/lisp/magit-reflog.el
+++ b/lisp/magit-reflog.el
@@ -150,6 +150,7 @@ Type \\[magit-cherry-pick] to apply the commit at point.
Type \\[magit-reset] to reset `HEAD' to the commit at point.
\\{magit-reflog-mode-map}"
+ :interactive nil
:group 'magit-log
(magit-hack-dir-local-variables)
(setq magit--imenu-item-types 'commit))
diff --git a/lisp/magit-refs.el b/lisp/magit-refs.el
index 066a420..7e2d9a3 100644
--- a/lisp/magit-refs.el
+++ b/lisp/magit-refs.el
@@ -294,6 +294,7 @@ Type \\[magit-cherry-pick] to apply the commit at point.
Type \\[magit-reset] to reset `HEAD' to the commit at point.
\\{magit-refs-mode-map}"
+ :interactive nil
:group 'magit-refs
(magit-hack-dir-local-variables)
(setq magit--imenu-group-types '(local remote tags)))
diff --git a/lisp/magit-repos.el b/lisp/magit-repos.el
index 7904486..aed56e3 100644
--- a/lisp/magit-repos.el
+++ b/lisp/magit-repos.el
@@ -265,6 +265,7 @@ If it contains \"%s\" then the directory is substituted for that."
(define-derived-mode magit-repolist-mode tabulated-list-mode "Repos"
"Major mode for browsing a list of Git repositories."
+ :interactive nil
:group 'magit-repolist
(setq-local x-stretch-cursor nil)
(setq tabulated-list-padding 0)
diff --git a/lisp/magit-section.el b/lisp/magit-section.el
index 7642aaa..e12deef 100644
--- a/lisp/magit-section.el
+++ b/lisp/magit-section.el
@@ -447,6 +447,7 @@ if any."
"Parent major mode from which major modes with Magit-like sections inherit.
Magit-Section is documented in info node `(magit-section)'."
+ :interactive nil
:group 'magit-section
(buffer-disable-undo)
(setq truncate-lines t)
diff --git a/lisp/magit-stash.el b/lisp/magit-stash.el
index 4ab2e20..e09bb78 100644
--- a/lisp/magit-stash.el
+++ b/lisp/magit-stash.el
@@ -511,6 +511,7 @@ instead of \"Stashes:\"."
(define-derived-mode magit-stashes-mode magit-reflog-mode "Magit Stashes"
"Mode for looking at lists of stashes."
+ :interactive nil
:group 'magit-log
(magit-hack-dir-local-variables))
@@ -572,6 +573,7 @@ If there is no stash buffer in the same frame, then do nothing."
(define-derived-mode magit-stash-mode magit-diff-mode "Magit Stash"
"Mode for looking at individual stashes."
+ :interactive nil
:group 'magit-diff
(magit-hack-dir-local-variables)
(setq magit--imenu-group-types '(commit)))
diff --git a/lisp/magit-status.el b/lisp/magit-status.el
index cbefc84..6b7b475 100644
--- a/lisp/magit-status.el
+++ b/lisp/magit-status.el
@@ -385,6 +385,7 @@ Staging and applying changes is documented in info node
Type \\[magit-commit] to create a commit.
\\{magit-status-mode-map}"
+ :interactive nil
:group 'magit-status
(magit-hack-dir-local-variables)
(when magit-status-initial-section
diff --git a/lisp/magit-submodule.el b/lisp/magit-submodule.el
index 060d7ef..2c2e946 100644
--- a/lisp/magit-submodule.el
+++ b/lisp/magit-submodule.el
@@ -636,6 +636,7 @@ These sections can be expanded to show the respective commits."
(define-derived-mode magit-submodule-list-mode tabulated-list-mode "Modules"
"Major mode for browsing a list of Git submodules."
+ :interactive nil
:group 'magit-repolist
(setq-local x-stretch-cursor nil)
(setq tabulated-list-padding 0)