branch: scratch/editorconfig-cc commit 10be4fd165d39baa4394e26256f696a39ab01de3 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Stefan Monnier <monn...@iro.umontreal.ca>
provide feature, use symbol prefix, add commentary, remove url from summary --- editorconfig.el | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) diff --git a/editorconfig.el b/editorconfig.el index e69de29bb2..066c2f2c79 100644 --- a/editorconfig.el +++ b/editorconfig.el @@ -0,0 +1,57 @@ +;;; editorconfig.el --- EditorConfig Emacs extension + +;; Copyright (C) 2011-2012 EditorConfig Team + +;; Author: Trey Hunner +;; Version: 0.1 +;; Homepage: http://editorconfig.org + +;; Redistribution and use in source and binary forms, with or without +;; modification, are permitted provided that the following conditions are met: +;; +;; 1. Redistributions of source code must retain the above copyright notice, +;; this list of conditions and the following disclaimer. +;; 2. Redistributions in binary form must reproduce the above copyright notice, +;; this list of conditions and the following disclaimer in the documentation +;; and/or other materials provided with the distribution. + +;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +;; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +;; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +;; ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE +;; LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +;; INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +;; CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +;; POSSIBILITY OF SUCH DAMAGE. + +;;; Commentary: + +;; EditorConfig helps developers define and maintain consistent +;; coding styles between different editors and IDEs. + +;; The EditorConfig project consists of a file format for defining +;; coding styles and a collection of text editor plugins that enable +;; editors to read the file format and adhere to defined styles. +;; EditorConfig files are easily readable and they work nicely with +;; version control systems. + +;;; Code: + +(defvar edconf-exec-path "editorconfig") + +(defun edconf-set-indentation (style &optional size tab_width) + ) + +(defun edconf-set-line-ending (end-of-line) + ) + +(defun edconf-get-properties () + ) + +(defun edconf-parse-properties (props-string) + ) + +(provide 'editorconfig)