]> code.delx.au - gnu-emacs-elpa/log
gnu-emacs-elpa
9 years agoMerge branch 'master' of github.com:bgamari/dts-mode
Ben Gamari [Fri, 3 Apr 2015 23:04:22 +0000 (19:04 -0400)]
Merge branch 'master' of github.com:bgamari/dts-mode

9 years agoSpell Device Tree with a space
Ben Gamari [Fri, 3 Apr 2015 23:04:10 +0000 (19:04 -0400)]
Spell Device Tree with a space

9 years agoMerge pull request #4 from mgalgs/tabsplz
Ben Gamari [Tue, 14 Oct 2014 21:09:36 +0000 (17:09 -0400)]
Merge pull request #4 from mgalgs/tabsplz

respect the user's indent-tabs-mode

9 years agorespect the user's indent-tabs-mode
Mitchel Humpherys [Tue, 14 Oct 2014 20:57:20 +0000 (13:57 -0700)]
respect the user's indent-tabs-mode

Not everyone (myself included) wants spaces instead of tabs.  Just leave
indent-tabs-mode alone.

9 years agoMerge pull request #3 from mgalgs/indentation
Ben Gamari [Tue, 23 Sep 2014 03:28:25 +0000 (23:28 -0400)]
Merge pull request #3 from mgalgs/indentation

add indentation support

9 years agoadd indentation support
Mitchel Humpherys [Tue, 23 Sep 2014 00:01:21 +0000 (17:01 -0700)]
add indentation support

Add a simple indentation function that looks at nothing but opening and
closes braces.

Ideally we should use `smie' to do indentation, but this works for now.

Given the following file:

    / {
    cpus {
    cpu-map {
    cluster1 {
    core0 {
    cpu = <&CPU0>;
    };
    core1 {
    cpu = <&CPU1>;
    };
    };
    };
    };

    widget: pizza,feast@a00000 {
    compatible = "pizza,feast-v1";
    things = <1 2 3>;
    };
    };

With this change we get the following indentation:

    / {
        cpus {
            cpu-map {
                cluster1 {
                    core0 {
                        cpu = <&CPU0>;
                    };
                    core1 {
                        cpu = <&CPU1>;
                    };
                };
            };
        };

        widget: pizza,feast@a00000 {
            compatible = "pizza,feast-v1";
            things = <1 2 3>;
        };
    };

9 years agoMerge pull request #2 from jamienicol/master
Ben Gamari [Mon, 22 Sep 2014 14:45:30 +0000 (10:45 -0400)]
Merge pull request #2 from jamienicol/master

Add autoload statements

9 years agoAdd autoload statements
Jamie Nicol [Mon, 22 Sep 2014 14:01:18 +0000 (15:01 +0100)]
Add autoload statements

9 years agoMerge pull request #1 from purcell/patch-1
Ben Gamari [Sun, 21 Sep 2014 14:59:06 +0000 (10:59 -0400)]
Merge pull request #1 from purcell/patch-1

A few fixes

9 years agoA few fixes
Steve Purcell [Sun, 21 Sep 2014 14:48:12 +0000 (15:48 +0100)]
A few fixes

- Use standard header
- Avoid Emacs 24-only features in order to allow use in Emacs 23
- Remove unused code

9 years agoAdd ends here
Ben Gamari [Sun, 21 Sep 2014 14:35:18 +0000 (10:35 -0400)]
Add ends here

9 years agoUpdate README.mkd
Ben Gamari [Sun, 21 Sep 2014 14:32:05 +0000 (10:32 -0400)]
Update README.mkd

9 years agoUpdate README.mkd
Ben Gamari [Sun, 21 Sep 2014 14:31:46 +0000 (10:31 -0400)]
Update README.mkd

9 years agoUpdate README.mkd
Ben Gamari [Sun, 21 Sep 2014 14:29:39 +0000 (10:29 -0400)]
Update README.mkd

9 years agoAddresses are hex digits, not decimal
Ben Gamari [Fri, 19 Sep 2014 20:21:11 +0000 (16:21 -0400)]
Addresses are hex digits, not decimal

9 years agoProper em-dash
Ben Gamari [Fri, 19 Sep 2014 19:50:43 +0000 (15:50 -0400)]
Proper em-dash

9 years agoMore readme
Ben Gamari [Fri, 19 Sep 2014 19:49:31 +0000 (15:49 -0400)]
More readme

9 years agoAdd README
Ben Gamari [Fri, 19 Sep 2014 19:49:22 +0000 (15:49 -0400)]
Add README

9 years agoInitial commit
Ben Gamari [Fri, 19 Sep 2014 19:46:14 +0000 (15:46 -0400)]
Initial commit