From: "Jostein Kjønigsen" <jostein@secure.kjonigsen.net>
To: Stefan Kangas <stefankangas@gmail.com>
Cc: "Jostein Kjønigsen" <jostein@kjonigsen.net>,
"Ergus via Emacs development discussions." <emacs-devel@gnu.org>,
"Yuan Fu" <casouri@gmail.com>,
"Theodor Thornhill" <theo@thornhill.no>
Subject: Re: [PATCH] New major-mode: bicep-ts-mode
Date: Tue, 2 Jan 2024 08:52:48 +0100 [thread overview]
Message-ID: <A87A5AED-68EC-47B3-B63E-1C547BA277F0@secure.kjonigsen.net> (raw)
In-Reply-To: <CADwFkm=a=gcsc38pjHkE35ZaVAh7dohQy==GemGWH4wosZ6bCg@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 507 bytes --]
> On 24 Dec 2023, at 15:32, Stefan Kangas <stefankangas@gmail.com> wrote:
>
> Jostein Kjønigsen <jostein@secure.kjonigsen.net> writes:
>
>> Great. Attach is a newer revision which handles syntax-highlighting of
>> user-defined types slightly better :)
>
> Thanks, let's see if anyone else has any comments.
Using this version I’ve found that array-type values was not indented properly (at all really).
Attached is a slightly modified version which fixes this issue.
—
Jostein
[-- Attachment #2: bicep-ts-mode.el --]
[-- Type: application/octet-stream, Size: 5878 bytes --]
;;; bicep-ts-mode.el --- tree-sitter support for Bicep -*- lexical-binding: t; -*-
;; Copyright (C) 2023-2023 Free Software Foundation, Inc.
;; Author : Jostein Kjønigsen <jostein@kjonigsen.net>
;; Maintainer : Jostein Kjønigsen <jostein@kjonigsen.net>
;; Created : December 2023
;; Keywords : bicep languages tree-sitter
;; This file is part of GNU Emacs.
;; GNU Emacs is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; GNU Emacs is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'treesit)
(declare-function treesit-parser-create "treesit.c")
(declare-function treesit-induce-sparse-tree "treesit.c")
(declare-function treesit-node-start "treesit.c")
(declare-function treesit-node-type "treesit.c")
(declare-function treesit-node-child "treesit.c")
(declare-function treesit-node-child-by-field-name "treesit.c")
(defcustom bicep-ts-mode-indent-offset 2
"Number of spaces for each indentation step in `bicep-ts-mode'."
:version "29.1"
:type 'natnum
:safe 'natnump
:group 'bicep)
(defvar bicep-ts-mode--syntax-table
(let ((table (make-syntax-table)))
(modify-syntax-entry ?= "." table)
(modify-syntax-entry ?\' "\"" table)
(modify-syntax-entry ?\n "> b" table)
table)
"Syntax table for `bicep-ts-mode'.")
(defvar bicep-ts-mode--indent-rules
`((bicep
((node-is "}") parent-bol 0)
((node-is "]") parent-bol 0)
((parent-is "array") parent-bol bicep-ts-mode-indent-offset)
((parent-is "object") parent-bol bicep-ts-mode-indent-offset)
((parent-is "for_statement") parent-bol bicep-ts-mode-indent-offset))))
(defvar bicep-ts-mode--keywords
'("var" "param" "resource"
"module" "type" "metadata"
"targetScope" "output"
"for" "in")
"Bicep keywords for tree-sitter font-locking.")
(defvar bicep-ts-mode--font-lock-settings
(treesit-font-lock-rules
:language 'bicep
:feature 'comment
'((comment) @font-lock-comment-face)
:language 'bicep
:feature 'delimiter
'(("=") @font-lock-delimiter-face)
:language 'bicep
:feature 'keyword
`([,@bicep-ts-mode--keywords] @font-lock-keyword-face)
:language 'bicep
:feature 'definition
'((parameter_declaration
(identifier) @font-lock-variable-name-face
(type) @font-lock-type-face)
(variable_declaration
(identifier) @font-lock-variable-name-face)
(resource_declaration
(identifier) @font-lock-variable-name-face)
(module_declaration
(identifier) @font-lock-variable-name-face)
(type_declaration
(identifier) @font-lock-type-face)
((builtin_type) @font-lock-type-face)
(output_declaration
(identifier) @font-lock-variable-name-face)
(output_declaration
(type) @font-lock-type-face))
:language 'bicep
:feature 'number
'((number)
@font-lock-number-face)
:language 'bicep
:feature 'string
'((string_content) @font-lock-string-face)
:language 'bicep
:feature 'boolean
'((boolean) @font-lock-constant-face)
:language 'bicep
:feature 'functions
'((call_expression
function: (identifier) @font-lock-function-name-face))
:language 'bicep
:feature 'error
:override t
'((ERROR) @font-lock-warning-face))
"Font-lock settings for BICEP.")
(defun bicep-ts-mode--defun-name (node)
"Return the defun name of NODE.
Return nil if there is no name or if NODE is not a defun node."
(treesit-node-text
(treesit-node-child node 1)
t))
;;;###autoload
(define-derived-mode bicep-ts-mode prog-mode "Bicep"
"Major mode for editing BICEP, powered by tree-sitter."
:group 'bicep-mode
:syntax-table bicep-ts-mode--syntax-table
(when (treesit-ready-p 'bicep)
(treesit-parser-create 'bicep)
;; Comments
(setq-local comment-start "# ")
(setq-local comment-end "")
;; Indent.
(setq-local treesit-simple-indent-rules bicep-ts-mode--indent-rules)
;; Navigation.
(setq-local treesit-defun-type-regexp
(rx (or "module_declaration" "type_declaration" "variable_declaration"
"parameter_declaration" "resource_declaration" "output_declaration")))
(setq-local treesit-defun-name-function #'bicep-ts-mode--defun-name)
;; Font-lock.
(setq-local treesit-font-lock-settings bicep-ts-mode--font-lock-settings)
(setq-local treesit-font-lock-feature-list
'((comment delimiter keyword)
(definition number string boolean)
(functions)
(error)))
;; Imenu.
(setq-local treesit-simple-imenu-settings
'(("Modules" "\\`module_declaration\\'" nil nil)
("Types" "\\`type_declaration\\'" nil nil)
("Variables" "\\`variable_declaration\\'" nil nil)
("Parameters" "\\`parameter_declaration\\'" nil nil)
("Resources" "\\`resource_declaration\\'" nil nil)
("Outputs" "\\`output_declaration\\'" nil nil)))
(treesit-major-mode-setup)))
(if (treesit-ready-p 'bicep)
(add-to-list 'auto-mode-alist '("\\.bicep\\'" . bicep-ts-mode)))
(provide 'bicep-ts-mode)
;;; bicep-ts-mode.el ends here
next prev parent reply other threads:[~2024-01-02 7:52 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-21 14:32 [PATCH] New major-mode: bicep-ts-mode Jostein Kjønigsen
2023-12-22 10:42 ` Stefan Kangas
2023-12-22 11:55 ` Jostein Kjønigsen
2023-12-24 14:32 ` Stefan Kangas
2024-01-02 7:52 ` Jostein Kjønigsen [this message]
2024-01-03 7:16 ` Yuan Fu
2024-01-04 4:52 ` Stefan Kangas
2024-01-05 19:10 ` Jostein Kjønigsen
2024-01-07 18:04 ` Daniel Mendler via Emacs development discussions.
2024-01-07 20:26 ` Stefan Kangas
2024-01-07 23:25 ` Stefan Monnier
2024-01-08 11:30 ` Jostein Kjønigsen
2024-01-08 19:23 ` Stefan Kangas
2024-01-09 0:33 ` Stefan Monnier
2024-01-09 19:12 ` Jostein Kjønigsen
2024-01-09 19:16 ` Stefan Kangas
2024-01-14 4:43 ` Stefan Monnier
2024-01-15 9:56 ` Jostein Kjønigsen
2024-01-15 17:35 ` Philip Kaludercic
2024-01-15 19:20 ` Stefan Monnier
2024-01-09 19:24 ` Philip Kaludercic
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=A87A5AED-68EC-47B3-B63E-1C547BA277F0@secure.kjonigsen.net \
--to=jostein@secure.kjonigsen.net \
--cc=casouri@gmail.com \
--cc=emacs-devel@gnu.org \
--cc=jostein@kjonigsen.net \
--cc=stefankangas@gmail.com \
--cc=theo@thornhill.no \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.