You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JetBrains is working on official support of Vue component libraries through web-types helper file. Quasar already generates it since this PR, but IDEA still can't read/use all information from it. Once it does, it will be way more powerfull than our hacking technique used in ide-helper.
Here is a checklist for what's still missing natively in idea and is provided by ide-helper. When this checklist is filled, we can stop generating those fake component files.
Autocomplete Quasar components
Autocomplete props
Autocomplete events
Type based autocomplete for enum types (this was kinda hacked in ide-helper by completing the whole prop with argument, but nevertheless it is useful)
This is stuff like align="justify", anchor + self on popovers and other props that only have finite set of predefined values. IDEA should autocomplete them inside the attribute.
Go-To declaration (ctrl-b) - does nothing if you don't use ide-helper, otherwise it goes to fake declaration, ideally it should go to typedef in index.d.ts
this kind of stopped working recently anyway, probably because those two system clash. But in older idea versions, ide-helper will peovide quick doc for quasar components.
The text was updated successfully, but these errors were encountered:
JetBrains is working on official support of Vue component libraries through
web-types
helper file. Quasar already generates it since this PR, but IDEA still can't read/use all information from it. Once it does, it will be way more powerfull than our hacking technique used inide-helper
.Here is a checklist for what's still missing natively in idea and is provided by ide-helper. When this checklist is filled, we can stop generating those fake component files.
Autocomplete Quasar components
Autocomplete props
Autocomplete events
Type based autocomplete for enum types (this was kinda hacked in
ide-helper
by completing the whole prop with argument, but nevertheless it is useful)align="justify"
,anchor
+self
on popovers and other props that only have finite set of predefined values. IDEA should autocomplete them inside the attribute.Go-To declaration (
ctrl-b
) - does nothing if you don't use ide-helper, otherwise it goes to fake declaration, ideally it should go to typedef inindex.d.ts
Go Upvote that one too!😉) FixedQuick Doc (
ctrl-q
)ide-helper
will peovide quick doc for quasar components.The text was updated successfully, but these errors were encountered: