This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; vrl-mode.el --- Major mode for Vector Remap Language code -*- lexical-binding: t; -*- | |
;; Version: 0.0.1 | |
;; Keywords: VRL major mode | |
;; Author: Stephen Wakely | |
;; Package-Requires: ((emacs "26.1")) | |
;; This file is not part of GNU Emacs. | |
;; This program is free software; you can redistribute it and/or modify |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; Copyright (C) 2018, 2019 Andreas Fuchs <[email protected]> | |
;;; Made available to you under the terms of GPLv2 or later: https://choosealicense.com/licenses/gpl-2.0/ | |
(use-package edit-indirect | |
:straight t) | |
(defconst asf--rustdoc-line-prefixes (concat "^\\([\t ]*" (regexp-opt '("///" "//!")) "\\)")) | |
(defun asf--rustdoc-current-comment-block-region () | |
(save-excursion |