Giter Club home page Giter Club logo

toml-mode.el's Introduction

toml-mode v0.1.3 (beta)

Emacs syntax hilighting for TOML. This is my first Emacs syntax hilighting plugin; as a result, it may be buggy.

INSTALL

If you have marmalade or melpa and emacs24 installed, simply type

M-x package-install toml-mode

In your .emacs

(require 'toml-mode)

If you don't have marmalade installed, add these to your .emacs

(require 'package)
(add-to-list 'package-archives 
    '("marmalade" . "http://marmalade-repo.org/packages/"))
(package-initialize)

M-x eval-buffer to evaluate it, and then do M-x package-refresh-contents to load in the package listing.

LICENSE

Copyright (C) 2013 by Felix Chern

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

This program 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; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

toml-mode.el's People

Contributors

andyleejordan avatar blaenk avatar brontitall avatar dryman avatar marsam avatar spacecowboy avatar zonuexe avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

toml-mode.el's Issues

Does not highlight quoted and single-letter keys

In TOML this is valid example from the readme:

[dog."tater.man"]
type = "pug"

toml-mode highlighting is broken with that.

And one more related thing: for some case toml-mode does not recognize one-letter-keys, although, as for TOML docs this is valid:

[a]
b = "c"

triple quoted strings not treated correctly

The following leads to odd highlighting:

[foo]
text = '''
foo bar 'baz
'''

[bar]
text = '''
foo bar 'baz
'''

Namely, the syntax highlighter doesn't recognize that ''' is a special "block string". It thinks that the string ends at the next ' when in fact it should only end at the next '''

Multi-line arrays are not indented correctly

According to the toml readme, a multi-line array should look like this:

hosts = [
  "alpha",
  "omega"
]

In toml-mode, it looks like this:

hosts = [
"alpha",
"omega"
]

Package-Version: 20161107.1000
Version: 0.1.3
Emacs: 25.1.1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.