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
Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (0.6.2) of this package:
Requiring $ from atom is no longer supported. If you are using space-pen, please require $ from atom-space-pen-views. Otherwise require jquery instead: {$} = require 'atom-space-pen-views' or $ = require 'jquery' Add "atom-space-pen-views": "^2.0.3" to your package dependencies. Or add "jquery": "^2" to your package dependencies.
Requiring SelectListView from atom is no longer supported. Please require SelectListView from atom-space-pen-view instead: {SelectListView} = require 'atom-space-pen-views' Note that the API has changed slightly! Please read the docs at https://github.com/atom/atom-space-pen-views Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
Requiring EditorView from atom is no longer supported. Please require TextEditorView from atom-space-pen-view instead: {TextEditorView} = require 'atom-space-pen-views' Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
Requiring View from atom is no longer supported. Please require atom-space-pen-views instead: {View} = require 'atom-space-pen-views' Add "atom-space-pen-views": "^2.0.3" to your package dependencies.
atom.workspaceView is no longer available. In most cases you will not need the view. See the Workspace docs for alternatives: https://atom.io/docs/api/latest/Workspace. If you do need the view, please use atom.views.getView(atom.workspace), which returns an HTMLElement.
Use ::addLeftTile({item, priority}) instead.
The atom.workspaceView.statusBar global is deprecated. The global was previously being assigned by the status-bar package, but Atom packages should never assign globals. In the future, this problem will be solved by an inter-package communication API available on atom.services. For now, you can get a reference to the status-bar element via document.querySelector('status-bar').
Use Workspace::observeTextEditors instead
Use Workspace::getTextEditors instead
Use Workspace::onDidAddTextEditor or Workspace::observeTextEditors instead.
Use TextEditor::onDidChangeGrammar instead
Use PackageManager::onDidActivateInitialPackages instead
Call ::getActiveTextEditor instead
Use TextBuffer::onDidChange instead
Use TextEditor::scrollToCursorPosition instead. You can get the editor via editorView.getModel()
Pretty much. I just haven't had the time to deal with it recently. I would
be more than willing to turn the project over to a willing participant if
there was someone that wanted to take it over.
Atom will no longer load this package after June 1st without changes. There are a couple deprecations on the latest version (
0.6.2
) of this package:$
fromatom
is no longer supported. If you are usingspace-pen
, please require$
fromatom-space-pen-views
. Otherwise requirejquery
instead:{$} = require 'atom-space-pen-views'
or$ = require 'jquery'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies. Or add"jquery": "^2"
to your package dependencies.SelectListView
fromatom
is no longer supported. Please requireSelectListView
fromatom-space-pen-view
instead:{SelectListView} = require 'atom-space-pen-views'
Note that the API has changed slightly! Please read the docs at https://github.com/atom/atom-space-pen-views Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.EditorView
fromatom
is no longer supported. Please requireTextEditorView
fromatom-space-pen-view
instead:{TextEditorView} = require 'atom-space-pen-views'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.View
fromatom
is no longer supported. Please requireatom-space-pen-views
instead:{View} = require 'atom-space-pen-views'
Add"atom-space-pen-views": "^2.0.3"
to your package dependencies.atom.views.getView(atom.workspace)
, which returns an HTMLElement.atom.services
. For now, you can get a reference to thestatus-bar
element viadocument.querySelector('status-bar')
.Visit https://gist.github.com/benogle/6d09e295c84b717ef9b4 and search for your package name to see up-to-date deprecations.
If this package has been replaced by another package or functionality in core, please reply with this information.
See atom/atom#6867 for more info. Thanks!
The text was updated successfully, but these errors were encountered: