GNU bug report logs - #77138
[PATCH] Add major mode for highlighting .npmrc files

Previous Next

Package: emacs;

Reported by: Konstantin Kharlamov <Hi-Angel <at> yandex.ru>

Date: Thu, 20 Mar 2025 16:27:01 UTC

Severity: normal

Tags: patch

Done: Eli Zaretskii <eliz <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Eli Zaretskii <eliz <at> gnu.org>
To: Konstantin Kharlamov <Hi-Angel <at> yandex.ru>
Cc: 77138 <at> debbugs.gnu.org
Subject: bug#77138: [PATCH] Add major mode for highlighting .npmrc files
Date: Sat, 22 Mar 2025 13:48:25 +0200
> From: Konstantin Kharlamov <Hi-Angel <at> yandex.ru>
> Date: Thu, 20 Mar 2025 19:26:03 +0300
> 
> ".npmrc" are configuration files used by "npm", which in turn is a
> widely used package manager in web-development setting (javascript,
> typescript, etc).
> 
> I don't have much expertise in NPM field, but judging by the official
> documentation¹ it's basically ini-style `key = value`, but with two
> comment styles (semicolon and hash sign).
> 
> Easily implementable by deriving from conf-mode and adding the comment
> styles.
> 
> Patch is attached.

Thanks.

> +(define-derived-mode conf-npmrc-mode conf-mode "Conf[npmrc]"
> + "Conf Mode starter for .npmrc files.
> +Comments start with `#' and `;'. For details see `conf-mode'."
> + (conf-mode-initialize "#")
> + (modify-syntax-entry ?\; "<")
> + (modify-syntax-entry ?\# "<"))

Doesn't this affect the global syntax table, not just the syntax local
to the buffer under this mode?




This bug report was last modified 54 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.