diff options
| author | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-07-21 15:46:31 -0400 |
|---|---|---|
| committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2023-07-21 15:46:31 -0400 |
| commit | 6009f57567959387b9e34068567e982b6991eb24 (patch) | |
| tree | f3b48ff107b7d286ae6ec75dbd57deb30aa8459d | |
| parent | c8496174ef572729d988ce15742d3c13145e553f (diff) | |
Commentary: Improveexternals/sed-mode
Suggested by Edrie Ddrie <planete3@gmail.com>
| -rw-r--r-- | sed-mode.el | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/sed-mode.el b/sed-mode.el index cbc17eb..a35bb4e 100644 --- a/sed-mode.el +++ b/sed-mode.el @@ -1,9 +1,9 @@ -;;; sed-mode.el --- Major mode to edit sed scripts -*- lexical-binding: t; -*- +;;; sed-mode.el --- Major mode to edit sed scripts -*- lexical-binding: t -*- -;; Copyright (C) 2016 Free Software Foundation, Inc. +;; Copyright (C) 2016-2023 Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> -;; Version: 1.0 +;; Version: 1.1 ;; Keywords: ;; This program is free software; you can redistribute it and/or modify @@ -21,12 +21,22 @@ ;;; Commentary: -;; If you need this major mode, you might also want to -;; consider spending some time with `M-x doctor'. +;; This major mode provides basic support for Sed scripts. Despite its +;; simplicity, I hope this major mode will be overkill for you. +;; The functionality supported is: +;; - Font-locking +;; - Auto-indentation + +;;; News: + +;; Since V1.0: + +;; - Improve the `Commentary'. + +;; Version 1.0: Initial release. ;;; Code: -(require 'cl-lib) (require 'smie) (defgroup sed-mode nil |
