This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Reload Without User Extensions command #5620
Closed
Closed
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
7436cb1
Add Reload Without User Extensions command
lkcampbell 9e6d059
Bug fixes and code clean up
lkcampbell 7f17970
Fix menu divider bug and small code clean up
lkcampbell d4f3b05
Another small code clean up
lkcampbell 4e66521
For #5068, when autoindenting, only insert a tab if the cursor doesn'…
3a49c3d
Fix bugs and add remove() and isEmpty() to UrlParams. Fix parameter c…
lkcampbell a22c85d
Merge pull request #5825 from adobe/alf_localization
redmunds 530a1e0
Merge pull request #5815 from adobe/nj/issue-5068
redmunds 5de4559
Merge remote-tracking branch 'origin/5078-fix' into 5078-fix
5531475
Change menu item order
lkcampbell 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
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
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
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
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
Oops, something went wrong.
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.
I wonder if we should have some other indicator in the UI that we're in this mode--for example, maybe we should put something in the status bar ("User Extensions Disabled" or some such). Otherwise it might be mysterious why the extension manager is turned off.
(If you do do that, note that there's a bug right now in the StatusBar that
addIndicator()
doesn't actually add the indicator :) See #5682. You have to work around it by adding the indicator manually before calling addIndicator().)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.
My idea was to have the Extension Manager Button in the right sidebar, but in a red style. We could also add a tooltip like
All user extensions are disabled.
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.
@njx, should I put in a workaround or should I wait for the addIndicator() fix?
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.
Let me see if I can get the
addIndicator()
fix in soon.