branch: externals/auctex commit 9fc41106dc82e240959c1ecbe40536496fd43367 Author: Arash Esbati <ar...@gnu.org> Commit: Arash Esbati <ar...@gnu.org>
Add new style/parskip.el * Makefile.in (STYLESRC): Add new style. * style/parskip.el: New file. --- Makefile.in | 2 +- style/parskip.el | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index c56c03c22d..a2bb2d9db7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -195,7 +195,7 @@ STYLESRC = style/prosper.el \ style/ifxetex.el style/multibib.el style/ltcaption.el \ style/keyval.el style/kvoptions.el style/kvsetkeys.el \ style/proc.el style/microtype.el style/tcolorboxlib-theorems.el \ - style/amsaddr.el style/catchfilebetweentags.el + style/amsaddr.el style/parskip.el style/catchfilebetweentags.el STYLEELC = $(STYLESRC:.el=.elc) diff --git a/style/parskip.el b/style/parskip.el new file mode 100644 index 0000000000..861d4698ec --- /dev/null +++ b/style/parskip.el @@ -0,0 +1,50 @@ +;;; parskip.el --- AUCTeX style for `parskip.sty' (v2.0h) -*- lexical-binding: t; -*- + +;; Copyright (C) 2022 Free Software Foundation, Inc. + +;; Author: Arash Esbati <ar...@gnu.org> +;; Maintainer: auctex-de...@gnu.org +;; Created: 2022-10-07 +;; Keywords: tex + +;; This file is part of AUCTeX. + +;; AUCTeX 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, or (at your option) +;; any later version. + +;; AUCTeX 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 AUCTeX; see the file COPYING. If not, write to the Free +;; Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +;; 02110-1301, USA. + +;;; Commentary: + +;; This file adds support for `parskip.sty' (v2.0h) from 2021/03/14. +;; `parskip.sty' is part of TeXLive. Note that the parskip package +;; doesn't offer any document user commands and just needs loading +;; with \usepackage. Hence this style provides only one function for +;; key=val query of package options. + +;;; Code: + +(require 'tex) +(require 'latex) + +(defun LaTeX-parskip-package-options () + "Prompt for package options for the parskip package." + (let ((len (mapcar (lambda (x) + (concat TeX-esc (car x))) + (LaTeX-length-list)))) + (TeX-read-key-val t `(("skip" ,len) + ("tocskip" ,len) + ("indent" ,len) + ("parfill" ,len))))) + +;;; parskip.el ends here