-
Notifications
You must be signed in to change notification settings - Fork 23
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
[BUG] Too much auto-complete #369
Comments
Here's another one. I just naively typed Digging through the settings I was lucky to find that this is caused by "autocomplete-plus", which can be disabled. But I humbly submit that this feature is absurd. |
Those completions are actually not provided by Juno, but by
I think changing
Enabling |
Juno's completions would only provided when Julia is running, on top of those default completions ;) |
Thanks for responding. Changing the settings does fix it, but I really think the default settings are terrible. I guess it's a bug in Atom then. I mean, is their intent really to by default change the last word of every line you type? I simply can't comprehend why that would be a good idea. |
It might make sense to disable the default provider since we now have working local completions. I'll play around with that a bit and see how it feels.
Yeah... Our installer package uber-juno will automatically "fix" that setting, but I've also submitted a PR to change the default. |
I agree with the idea of disabling the default provider on uber-juno installation (I don't like the default behaviour too). |
I assign ctrl-l to |
No, we don't need to do anything that drastic -- it should be enough to set |
Ah I see, sounds cool. And we now have the config to set the priority of our provider and it may allow us "make our provider humble" (i.e. still keeps snippets alive if we set the config to an lower value) ;) |
Yup. Should make sure that we play nice with snippets and latex-completions. I'll open a PR sometime today, I hope. |
cool, I'll give a review on it. |
Thanks for making those PRs! Glad I'm not the only one who sees it this way :) |
My escape key was wearing out. Thanks for reporting and fixing! |
Details
Steps to reproduce
I create a new file and type
# Types
. It suggests changing totypes
(so of course hitting enter accepts that instead of inserting a newline). (1) this is inside a comment, (2) the file is calleduntitled
with no extension so I'm not sure what the completions are supposed to be for, (3) I'm not aware of a julia function or keywordtypes
that this is trying to complete to. Does it just not like initial capitals? Why is writingTypes
so obviously wrong that the default is to switch it totypes
?The text was updated successfully, but these errors were encountered: