Where am I going wrong in defining emacs major mode?
I am trying to define a new mode which inherits everything from Org mode, called web mode.
Here is a preliminary amateur stab at this.
(defvar web-mode-syntax-table
org-mode-syntax-table
"Syntax table used while in `web-mode'.")
;; Create the keymap for this mode.
(defvar web-mode-map
org-mode-map
"Keymap for `web-mode'.")
(setq web-highlights
'(("Sin\|Cos\|Sum" . font-lock-function-name-face)
("Pi\|Infinity" . font-lock-warning-face)))
;; set files ending in .web to open in web mode.
(add-to-list 'auto-mode-alist '("\.web\'" . web-mode))
(define-derived-mode web-mode org-mode "web-mode"
"Major mode based on Org-mode"
(kill-all-local-variables)
(setq major-mode 'web-mode)
(setq mode-name "Web Mode")
;; Tell font-lock mode about some things which
;; need to be highlighted.
(setq font-lock-defaults '(web-highlights))
)
However, when web-mode is loaded in a text file it seems identical to the plain-vanilla text mode. The key-words Sin, Cos and Sum get highlighted in blue correctly and the Pi and Infinity in bold red font, but otherwise nothing seems to have been inherited from Org mode, and seems indistinguishable from text mode.
Why is this?
emacs major-mode
add a comment |
I am trying to define a new mode which inherits everything from Org mode, called web mode.
Here is a preliminary amateur stab at this.
(defvar web-mode-syntax-table
org-mode-syntax-table
"Syntax table used while in `web-mode'.")
;; Create the keymap for this mode.
(defvar web-mode-map
org-mode-map
"Keymap for `web-mode'.")
(setq web-highlights
'(("Sin\|Cos\|Sum" . font-lock-function-name-face)
("Pi\|Infinity" . font-lock-warning-face)))
;; set files ending in .web to open in web mode.
(add-to-list 'auto-mode-alist '("\.web\'" . web-mode))
(define-derived-mode web-mode org-mode "web-mode"
"Major mode based on Org-mode"
(kill-all-local-variables)
(setq major-mode 'web-mode)
(setq mode-name "Web Mode")
;; Tell font-lock mode about some things which
;; need to be highlighted.
(setq font-lock-defaults '(web-highlights))
)
However, when web-mode is loaded in a text file it seems identical to the plain-vanilla text mode. The key-words Sin, Cos and Sum get highlighted in blue correctly and the Pi and Infinity in bold red font, but otherwise nothing seems to have been inherited from Org mode, and seems indistinguishable from text mode.
Why is this?
emacs major-mode
1
I don't have the answer, but I have various comments:the"web-mode"
arg is the mode-name, so remove the(setq mode-name "Web Mode")
. Similarly, remove the setq ofmajor-mode
and the call tokill-all-local-variables
since they're already performed bydefine-derived-mode
for you. Along the same lines: defineweb-mode-map
as(make-sparse-keymap)
andweb-mode-syntax-table
as(make-syntax-table)
:define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting offont-lock-defaults
overrides org-mode's font-lock setup.
– Stefan
Nov 20 '18 at 2:15
add a comment |
I am trying to define a new mode which inherits everything from Org mode, called web mode.
Here is a preliminary amateur stab at this.
(defvar web-mode-syntax-table
org-mode-syntax-table
"Syntax table used while in `web-mode'.")
;; Create the keymap for this mode.
(defvar web-mode-map
org-mode-map
"Keymap for `web-mode'.")
(setq web-highlights
'(("Sin\|Cos\|Sum" . font-lock-function-name-face)
("Pi\|Infinity" . font-lock-warning-face)))
;; set files ending in .web to open in web mode.
(add-to-list 'auto-mode-alist '("\.web\'" . web-mode))
(define-derived-mode web-mode org-mode "web-mode"
"Major mode based on Org-mode"
(kill-all-local-variables)
(setq major-mode 'web-mode)
(setq mode-name "Web Mode")
;; Tell font-lock mode about some things which
;; need to be highlighted.
(setq font-lock-defaults '(web-highlights))
)
However, when web-mode is loaded in a text file it seems identical to the plain-vanilla text mode. The key-words Sin, Cos and Sum get highlighted in blue correctly and the Pi and Infinity in bold red font, but otherwise nothing seems to have been inherited from Org mode, and seems indistinguishable from text mode.
Why is this?
emacs major-mode
I am trying to define a new mode which inherits everything from Org mode, called web mode.
Here is a preliminary amateur stab at this.
(defvar web-mode-syntax-table
org-mode-syntax-table
"Syntax table used while in `web-mode'.")
;; Create the keymap for this mode.
(defvar web-mode-map
org-mode-map
"Keymap for `web-mode'.")
(setq web-highlights
'(("Sin\|Cos\|Sum" . font-lock-function-name-face)
("Pi\|Infinity" . font-lock-warning-face)))
;; set files ending in .web to open in web mode.
(add-to-list 'auto-mode-alist '("\.web\'" . web-mode))
(define-derived-mode web-mode org-mode "web-mode"
"Major mode based on Org-mode"
(kill-all-local-variables)
(setq major-mode 'web-mode)
(setq mode-name "Web Mode")
;; Tell font-lock mode about some things which
;; need to be highlighted.
(setq font-lock-defaults '(web-highlights))
)
However, when web-mode is loaded in a text file it seems identical to the plain-vanilla text mode. The key-words Sin, Cos and Sum get highlighted in blue correctly and the Pi and Infinity in bold red font, but otherwise nothing seems to have been inherited from Org mode, and seems indistinguishable from text mode.
Why is this?
emacs major-mode
emacs major-mode
edited Nov 20 '18 at 1:24


Drew
23.9k54965
23.9k54965
asked Nov 19 '18 at 23:54


smilingbuddhasmilingbuddha
5,4972184141
5,4972184141
1
I don't have the answer, but I have various comments:the"web-mode"
arg is the mode-name, so remove the(setq mode-name "Web Mode")
. Similarly, remove the setq ofmajor-mode
and the call tokill-all-local-variables
since they're already performed bydefine-derived-mode
for you. Along the same lines: defineweb-mode-map
as(make-sparse-keymap)
andweb-mode-syntax-table
as(make-syntax-table)
:define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting offont-lock-defaults
overrides org-mode's font-lock setup.
– Stefan
Nov 20 '18 at 2:15
add a comment |
1
I don't have the answer, but I have various comments:the"web-mode"
arg is the mode-name, so remove the(setq mode-name "Web Mode")
. Similarly, remove the setq ofmajor-mode
and the call tokill-all-local-variables
since they're already performed bydefine-derived-mode
for you. Along the same lines: defineweb-mode-map
as(make-sparse-keymap)
andweb-mode-syntax-table
as(make-syntax-table)
:define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting offont-lock-defaults
overrides org-mode's font-lock setup.
– Stefan
Nov 20 '18 at 2:15
1
1
I don't have the answer, but I have various comments:the
"web-mode"
arg is the mode-name, so remove the (setq mode-name "Web Mode")
. Similarly, remove the setq of major-mode
and the call to kill-all-local-variables
since they're already performed by define-derived-mode
for you. Along the same lines: define web-mode-map
as (make-sparse-keymap)
and web-mode-syntax-table
as (make-syntax-table)
: define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting of font-lock-defaults
overrides org-mode's font-lock setup.– Stefan
Nov 20 '18 at 2:15
I don't have the answer, but I have various comments:the
"web-mode"
arg is the mode-name, so remove the (setq mode-name "Web Mode")
. Similarly, remove the setq of major-mode
and the call to kill-all-local-variables
since they're already performed by define-derived-mode
for you. Along the same lines: define web-mode-map
as (make-sparse-keymap)
and web-mode-syntax-table
as (make-syntax-table)
: define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting of font-lock-defaults
overrides org-mode's font-lock setup.– Stefan
Nov 20 '18 at 2:15
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384322%2fwhere-am-i-going-wrong-in-defining-emacs-major-mode%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384322%2fwhere-am-i-going-wrong-in-defining-emacs-major-mode%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
I don't have the answer, but I have various comments:the
"web-mode"
arg is the mode-name, so remove the(setq mode-name "Web Mode")
. Similarly, remove the setq ofmajor-mode
and the call tokill-all-local-variables
since they're already performed bydefine-derived-mode
for you. Along the same lines: defineweb-mode-map
as(make-sparse-keymap)
andweb-mode-syntax-table
as(make-syntax-table)
:define-derived-mode
will make sure they inherit from the corresponding org-mode table. One more thing: your setting offont-lock-defaults
overrides org-mode's font-lock setup.– Stefan
Nov 20 '18 at 2:15