Joël Stemmer

Results 23 comments of Joël Stemmer

Thanks, this is a nice feature to add. I've had some trouble trying to match subdirectories in a long path. It looks like this is because filepath.Match does not handle...

I see you opened issue golang/go#11862 in the Go project regarding the `**` wildcard. I'll keep an eye on it.

Instead of checking `p.excludeTag` everywhere, you could replace all the `p.tags = append(p.tags, tag)` instances with a function `p.add(tag)` that adds a tag to the tags slice when it shouldn't...

@ascarter a quick update: I'm in the middle of changing jobs (and moving to another country), so I haven't had time to check on my github projects. I should have...

Yeah, this is really just a Tagbar issue. What was the error message you saw?

This is likely a bug in Tagbar (see #32). Jumping works correctly if you remove the `^` character and in both cases the `gotags` output is the same.

Thanks @majutsushi for the update and fixing Tagbar! I originally used the ctags spec when creating gotags and back then outputting line numbers was the easiest thing to do. It...

I agree to relicense my contributions and they're already covered by the Google CLA.

There are a few things happening here. I'm fairly certain that the reason that `err` didn't return an error even though the command failed was because of a bug in...

Sorry, it looks like I was mistaken. I've ran a few tests with invalid repo urls and the original error only contains the string `exit status 1`. The actual error...