EditorConfig Core bindings for Lua
C CMake
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
cmake/Modules
tests @ 1609bf5
.editorconfig
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
editorconfig-core-scm-1.rockspec Bump version to 0.2.0 Sep 29, 2016
editorconfig.lua.in
editorconfig_lua.c

README.md

EditorConfig Lua Core

EditorConfig Lua Core provides the same functionality as the EditorConfig C Core library.

EditorConfig Project

EditorConfig makes it easy to maintain the correct coding style when switching between different text editors and between different projects. The EditorConfig project maintains a file format and plugins for various text editors which allow this file format to be read and used by those editors. For information on the file format and supported text editors, see the EditorConfig website.

Installation

Build/install using LuaRocks (recommended):

luarocks make

Build/install using CMake:

mkdir cmbuild
cd cmbuild
cmake ..
make
make test   #optional

Then copy the editorconfig_core.so binary module to somewhere in your LUA_CPATH.

Usage

The open module function returns an iterator over the property set. Typical usage by plugins would be:

ec = require("editorconfig_core")

for name, value in ec.open("/full/path/to/file") do
    configure_property[name](value)
end

Alternatively the parse module function returns a key/value property table. Sometimes it is useful to have the same stable order for each parse() invocation that the EditorConfig C Core library provides. For that the property keys are available as an array in a second return value:

prop, names = ec.parse("/full/path/to/file")
print(#names .. " properties:")
for idx, name in ipairs(names) do
  print(string.format("%s: %s=%s", idx, name, prop[name]))
end

Note also the use of the length operator to retrieve the EditorConfig property count for a given file.