-
Notifications
You must be signed in to change notification settings - Fork 62
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
Add Auto Complete feature to JSON.stringfy method. #105
Open
EliaquimNascimento
wants to merge
39
commits into
soates:master
Choose a base branch
from
NuclleaR:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Catch any readFile errors and output to console
Add support for function export
- fix jsx, tsx support - fix infinity loop search - fix export default keyword
Insert import to the end of imports block
…and connect (mostly used with redux..) maybe this could be a setting in the future?
…e it much more re-usable.
Insert import to the end of imports block
Added ability for parser to bypass higher order components
Added configuration to enable absolute paths
add semicolon config option
Fix the semicolon config usage
[Fix] Remove duplication with auto completions
Fix semicolon Usage
Update README with semicolon config option
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hi!
Thanks for your extension on Visual Studio. It helps me a lot! ^^
I want to ask you if you can add the autocomplete feature in a case that I apply a global object to a local object, for example:
Inside my application, it works ok. But I really want it to work inside the visual studio code.
If I type:
globalObject .[it will autocomplete as property]
but in this case:
$gameSystem._obj.[it not autocomplete like a property]