Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Does not work with command-t at all #5

Open
dylan-chong opened this issue Jun 5, 2018 · 1 comment
Open

Does not work with command-t at all #5

dylan-chong opened this issue Jun 5, 2018 · 1 comment

Comments

@dylan-chong
Copy link

dylan-chong commented Jun 5, 2018

I have node_modules in my gitignore, but it does not get ignored by command t.

There is not even any code in the repo that will support command t

@vogre
Copy link

vogre commented Nov 10, 2018

Note that command-t wildignore works unlike vim wildignore https://github.com/wincent/command-t/blob/7364a410bc4f0d7febc183678cd565066dfd1e73/doc/command-t.txt#L1102

so, /node_modules/ does not get ignored but */node_modules/ does get ignored. The simplest way to do this is to change

let line = substitute(line, '/', '', '')

to

      let line = substitute(line, '/', '*/', '')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants