This repository has been archived by the owner on Mar 19, 2022. It is now read-only.
forked from microsoft/TypeScript-TmLanguage
-
Notifications
You must be signed in to change notification settings - Fork 2
Fix symbol lists using tmPreferences files #4
Merged
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
800a644
Exclude function calls from the symbol lists... no way to make them r…
willstott101 d6e72b7
Exclude type annotations from the symbol lists
willstott101 0cada1d
Exclude type parameters from the symbol lists as the generic names ca…
willstott101 a0013ee
Ignore return types as for some reason they are not type annotations …
willstott101 1e6acbb
Turns out I missed it... but there is a showInIndexedReferenceList se…
willstott101 e984af8
Refactor Symbol/Reference List tmPreferences files - my super basic t…
willstott101 e4ceb42
Don't let "as Type" clauses show as Type definitions
willstott101 00f56ce
Remove redundant symbol list scope exclusions
willstott101 046f5f6
Re-name Reference List customization files. Newlines at end of files
willstott101 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>scope</key> | ||
<string> | ||
meta.definition.function.ts, | ||
meta.definition.method.ts | ||
</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>showInIndexedReferenceList</key> | ||
<string>0</string> | ||
</dict> | ||
</dict> | ||
</plist> | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>scope</key> | ||
<string> | ||
entity.name.type.ts, | ||
entity.name.function.ts | ||
</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>showInIndexedReferenceList</key> | ||
<string>1</string> | ||
</dict> | ||
</dict> | ||
</plist> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>scope</key> | ||
<string> | ||
entity.name.type.ts, | ||
meta.function-call.ts | ||
</string> | ||
<key>settings</key> | ||
<dict> | ||
<key>showInIndexedSymbolList</key> | ||
<integer>0</integer> | ||
<key>showInSymbolList</key> | ||
<integer>0</integer> | ||
</dict> | ||
</dict> | ||
</plist> |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indexed Reference List.tmPreferences
to be in line with other packages.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Exclusions
andInclusions
still keeping the order.Have done the changes in an airport without wifi and replying on my phone... so won't be till later that I can actually push.