Skip to content
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

chore: clean up activation events #3510

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Changed
* Default of `julia.persistentSession.closeStrategy` changed to overridable ([#3494](https://github.com/julia-vscode/julia-vscode/pull/3494))
* Key combination for `language-julia.clearAllInlineResultsInEditor` changed from Alt+I Alt+C to Alt+J Alt+C to avoid clashes with the key combination for typing `|` (which is Alt+I on some keyboards) ([#3509](https://github.com/julia-vscode/julia-vscode/pull/3509))
* Extension is no longer automatically activated when Jupyter notebooks are opened ([#3510](https://github.com/julia-vscode/julia-vscode/pull/3510))

### Fixed
* Code execution now works properly when connected to an external REPL ([#3506](https://github.com/julia-vscode/julia-vscode/pull/3506))
Expand Down
31 changes: 0 additions & 31 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,41 +30,10 @@
"activationEvents": [
"onDebugInitialConfigurations",
"onDebugResolve:julia",
"onCommand:language-julia.openPackageDirectory",
"onCommand:language-julia.changeCurrentEnvironment",
"onCommand:language-julia.startREPL",
"onCommand:language-julia.connectREPL",
"onCommand:language-julia.stopREPL",
"onCommand:language-julia.stopTestProcess",
"onCommand:language-julia.restartREPL",
"onCommand:language-julia.executeCodeBlockOrSelection",
"onCommand:language-julia.executeFile",
"onCommand:language-julia.executeActiveFile",
"onCommand:language-julia.toggleLinter",
"onCommand:language-julia.weave-open-preview",
"onCommand:language-julia.weave-open-preview-side",
"onCommand:language-julia.weave-save",
"onCommand:language-julia.show-plotpane",
"onCommand:language-julia.openProfiler",
"onCommand:language-julia.nextProfile",
"onCommand:language-julia.previousProfile",
"onCommand:language-julia.executeCell",
"onCommand:language-julia.executeJuliaBlockInREPL",
"onCommand:language-julia.selectBlock",
"onCommand:language-julia.moveCellUp",
"onCommand:language-julia.moveCellDown",
"onCommand:language-julia.debug.getActiveJuliaEnvironment",
"onCommand:language-julia.debugEditorContents",
"onCommand:language-julia.runEditorContents",
"onCommand:language-julia.interrupt",
"onCommand:language-julia.cdHere",
"onCommand:language-julia.activateHere",
"onCommand:language-julia.activateFromDir",
"onCommand:language-julia.tagNewPackageVersion",
"onCommand:language-julia.newJuliaFile",
"onLanguage:julia",
"onLanguage:juliamarkdown",
"onNotebook:jupyter-notebook",
"onView:julia-explorer.REPLVariables",
"onView:julia-explorer.julia-documentation",
"onView:julia-explorer.julia-plot-navigator",
Expand Down
Loading