Go to file
Vasilij Schneidermann 7b5ce294fb Set `comment-end' to make hide-show heuristic work 2024-03-17 17:02:05 +01:00
.github/workflows more fix 2022-10-22 18:11:36 +09:00
test Add an unit test for moving pages 2023-11-20 16:21:24 +09:00
test-files Fix propertization for lists of dicts with literal block 2020-08-20 16:36:44 +01:00
.dir-locals.el Ensure tabs are not used for indenting source code 2021-12-30 12:26:03 +01:00
.gitignore added changes 2012-02-28 13:10:20 +09:00
Changes Bump version and update changes 2023-09-20 00:02:27 +02:00
LICENSE.txt Upgrade license to GPLv3 2022-01-04 15:19:20 +01:00
Makefile Add unit test and github actions configuration 2022-10-22 17:28:22 +09:00
README Update license text in README 2022-01-12 20:09:32 +01:00
yaml-mode.el Set `comment-end' to make hide-show heuristic work 2024-03-17 17:02:05 +01:00

README

RECRUITMENTS
    I have not used emacs and this library for a long time,
    so I recruit maintainers or collaborators for all yaml-mode users.
    If you are interested in maintaining or collaborating with this library,
    please contact me.

NAME
    yaml-mode - Simple major mode to edit YAML file for emacs

REQUIREMENTS
    Emacs 24.1

SYNOPSIS
    To install, just drop this file into a directory in your
    `load-path' and (optionally) byte-compile it.  To automatically
    handle files ending in '.yml', add something like:

    (require 'yaml-mode)
    (add-to-list 'auto-mode-alist '("\\.yml\\'" . yaml-mode))

    to your .emacs file.

    Unlike python-mode, this mode follows the Emacs convention of not
    binding the ENTER key to `newline-and-indent'.  To get this
    behavior, add the key definition to `yaml-mode-hook':

    (add-hook 'yaml-mode-hook
      '(lambda ()
        (define-key yaml-mode-map "\C-m" 'newline-and-indent)))

DESCRIPTION
    yaml-mode is major mode for emacs.

INSTALL
    You can install yaml-mode typing below.

        % make
        % make install

        or

        % make PREFIX=/your/home/dir
        % make install PREFIX=/your/home/dir

SETTING
    see SYNOPSIS.

AUTHOR
    Yoshiki Kurihara <kurihara@cpan.org> Copyright (C) 2010 by Free Software
    Foundation, Inc.

    This file 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.

    This file 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/>.