-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
Unable to eval or run tests when namespace is camelCase #432
Comments
@lamp Thanks for your reporting!
Could you confirm that you can reproduce the problem or not with minimal configuration? |
Hey @liquidz , Thanks for the reply, I did as you asked and created a sample app using I was able to reproduce it with:
The only difference I can see is that in one file the namespace starts with I have attached my sample project for you to take a look, if you need anything else please let me know I will be happy to provide whatever I can. Additional information
|
@lamp Thanks for your confirmation! |
@lamp I found that ignorecase option is the cause. |
Ah, sorry, I've fixed it here 😣 When I reprocuded the problem, I tried to check debug messages with
The response(
vim-iced/autoload/iced/nrepl/ns.vim Lines 76 to 100 in 6991e12
The matchstr function is using |
I can confirm it now works perfectly in my demo app and the real one, thank you!
Thanks again |
Hi,
I'm working in a codebase where I am required to have namespaces in the form:
The folder structure matches the namespace declaration, so
src/someName/core.clj
andtest/someName/core_test.clj
When in these namespaces I am unable to eval or run any tests, when doing so there is no output whatsoever.
After switching the folder structure and namespaces to all be lower case this is no longer an issue, eval and IcedTest* all work as expected.
I have only checked this while using clojure cli, but I don't think there would be any difference with any other tool.
I'm happy to try and fix it myself if I could get some pointers as to where it might be, I did look here but without a little help I am probably going to waste a lot of time.
Many thanks for the project, I find it very useful.
The text was updated successfully, but these errors were encountered: