Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Vendor ctags binary
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsawicki committed Aug 14, 2013
1 parent 386b40d commit 35b3e47
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 2 additions & 1 deletion lib/tag-generator.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Point = require 'point'
$ = require 'jquery'
BufferedProcess = require 'buffered-process'
fsUtils = require 'fs-utils'
path = require 'path'

module.exports =
class TagGenerator
Expand All @@ -18,7 +19,7 @@ class TagGenerator
generate: ->
deferred = $.Deferred()
tags = []
command = fsUtils.resolveOnLoadPath('ctags')
command = path.resolve(__dirname, '..', 'vendor', 'ctags')
args = ['--fields=+KS', '-nf', '-', @path]
stdout = (lines) =>
for line in lines.split('\n')
Expand Down
Binary file added vendor/ctags
Binary file not shown.

0 comments on commit 35b3e47

Please sign in to comment.