Emacs: Disable mediawiki-mode for Emacs >= 27.
This commit is contained in:
parent
0be017e806
commit
09562f4755
|
@ -1,6 +1,6 @@
|
||||||
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
|
;;; server.el --- Set up network stuff.. -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
;; Time-stamp: <2020-04-18T03:11:41+0200>
|
;; Time-stamp: <2020-04-25T17:36:34+0200>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
'(
|
'(
|
||||||
("^likeable\\.space$" . markdown-mode)
|
("^likeable\\.space$" . markdown-mode)
|
||||||
("^schlomp\\.space$" . gfm-mode)
|
("^schlomp\\.space$" . gfm-mode)
|
||||||
("^wiki\\.gentoo\\.org$" . mediawiki-mode)
|
;; ("^wiki\\.gentoo\\.org$" . mediawiki-mode)
|
||||||
("^github\\.com$" . gfm-mode)
|
("^github\\.com$" . gfm-mode)
|
||||||
("^gitlab\\.com$" . gfm-mode)
|
("^gitlab\\.com$" . gfm-mode)
|
||||||
("^gitlab\\.gnome\\.org$" . gfm-mode)
|
("^gitlab\\.gnome\\.org$" . gfm-mode)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
|
;;; misc.el --- Miscellaneous file formats. -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
;; Time-stamp: <2020-04-24T15:08:33+0200>
|
;; Time-stamp: <2020-04-25T17:35:23+0200>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
|
|
||||||
|
@ -38,6 +38,8 @@
|
||||||
:hook (yaml-mode . my/truncate-lines))
|
:hook (yaml-mode . my/truncate-lines))
|
||||||
|
|
||||||
(use-package mediawiki
|
(use-package mediawiki
|
||||||
|
;; Broken for >= 27, <https://github.com/hexmode/mediawiki-el/issues/35>.
|
||||||
|
:if (< emacs-major-version 27)
|
||||||
:commands (mediawiki-mode))
|
:commands (mediawiki-mode))
|
||||||
|
|
||||||
(use-package csv-mode
|
(use-package csv-mode
|
||||||
|
|
Loading…
Reference in New Issue
Block a user