Commit 1e0bd029 authored by Hermann Mayer's avatar Hermann Mayer
Browse files

VimRC: Fixed js-outline for node.js >= 0.10.

parent 95265e10
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
New bashrc component added
==========================
[2013-04-25] jsctags / doctorjs patched to work with node.js >= 0.10
====================================================================

* While working with an older node.js version (0.8.18)
  I never noticed any error with the new js-outline.
  But on work I got a newer node.js version on which
  doctorjs will crash. Fixed this according to:

  https://github.com/mozilla/doctorjs/pull/54/files

[2013-04-08] New bashrc component added
=======================================

* A new component were added. The 'completions' component
  adds at the moment a completion for the bashrc binary.
@@ -9,8 +19,8 @@ New bashrc component added

  Or just copy over the delivered exports.conf.dist file.

New bashrc binary
=================
[2013-04-08] New bashrc binary
==============================

* Added new binary named bashrc which unifies the project
  management. This and all new binaries which are located
+1 −1
Original line number Diff line number Diff line
@@ -43,11 +43,11 @@ var TagWriter = require('./writer').TagWriter;
var Trait = require('../traits').Trait;

exports.Tags = function (initialTags) {
    this.tags = initialTags != null ? initialTags : [];
    this.init();
};

exports.Tags.prototype = Object.create(Object.prototype, Trait.compose(Trait({
    tags: [],
    _search: function (id, pred) {
        var shadowTag = { name: id };
        var tags = this.tags;