jasonkarns
3/13/2014 - 3:48 AM

vim-projectile file for Lineman projects

vim-projectile file for Lineman projects

{
  "README.md": {
    "command": "readme"
  },
  "package.json": {
    "command": "package"
  },
  "bower.json": {
    "command": "bower"
  },

  "Gruntfile.js": {
    "command": "grunt"
  },
  "Gruntfile.coffee": {
    "command": "grunt"
  },

  "config/*.js": {
    "command": "config"
  },
  "config/*.json": {
    "command": "config"
  },
  "config/*.coffee": {
    "command": "config"
  },


  "app/css/*.less": {
    "command": "css"
  },
  "app/css/*.sass": {
    "command": "css"
  },
  "app/css/*.scss": {
    "command": "css"
  },
  "app/css/*.css": {
    "command": "css"
  },

  "app/pages/*.us": {
    "command": "page"
  },

  "app/templates/*.us": {
    "command": "template"
  },

  "app/js/*.js": {
    "command": "js",
    "alternate": "spec/{}-spec.js"
  },
  "app/js/*.coffee": {
    "command": "js",
    "alternate": "spec/{}-spec.coffee"
  },

  "spec/*-spec.js": {
    "command": "spec",
    "alternate": "app/js/{}.js"
  },
  "spec/*-spec.coffee": {
    "command": "spec",
    "alternate": "app/js/{}.coffee"
  }
}