Kevin Sawicki
83c8d904cf
🎨 Add space before arrow
2015-02-04 17:44:33 -08:00
Kevin Sawicki
fd1d872840
Prompt split editors to save on close
...
Previously an editor that was split into multiple panes would not
prompt to save correctly when the window was unloading.
This adds a new `windowCloseRequested` option passed through from the
beforeunload handler to the editor so that it can specially handle this
case.
Closes #5257
2015-02-04 17:14:46 -08:00
Kevin Sawicki
c5b6b90c88
Normalize opened paths to handle ~
...
Closes #3829
2015-02-04 16:39:25 -08:00
Kevin Sawicki
9618ec45cf
Remove unused require
2015-02-04 15:35:41 -08:00
Kevin Sawicki
6e3d41f433
Suppress deprecations in BufferedNodeProcess
...
This keeps it consistent with the render process which also suppresses
deprecations
Closes #5383
2015-02-04 15:27:17 -08:00
Kevin Sawicki
de1c6d1a5d
Remove unused require
2015-02-04 10:54:25 -08:00
Kevin Sawicki
a985942b16
Use realpath to maintain old behavior
2015-02-04 10:52:32 -08:00
Kevin Sawicki
71333bbc93
Remove custom Windows behavior
2015-02-04 10:42:13 -08:00
Kevin Sawicki
4e10ea0b10
Remove unused Subscriber mixin
2015-02-04 10:35:57 -08:00
Kevin Sawicki
888d6dfab5
Inline compile cache path
2015-02-04 10:35:57 -08:00
Kevin Sawicki
622b396111
Guard against no LOCALAPPDATA env var
2015-02-04 10:35:57 -08:00
Kevin Sawicki
0f2943989f
📝 Fix comment typos
2015-02-04 10:35:57 -08:00
Kevin Sawicki
63e618cf74
Add missing rootAtomFolder var
2015-02-04 10:35:57 -08:00
Kevin Sawicki
76f37277d9
Use sibling .atom when non-standard installer location
2015-02-04 10:35:57 -08:00
Kevin Sawicki
745e9c8284
📝 Default -> Defaults
2015-02-04 10:35:57 -08:00
Kevin Sawicki
456e511031
📝 Doc ATOM_HOME
2015-02-04 10:35:57 -08:00
Kevin Sawicki
390be558e2
Use ATOM_HOME when setting configDirPath
2015-02-04 10:35:57 -08:00
Kevin Sawicki
a127240f4f
Use ATOM_HOME as config dir path
2015-02-04 10:35:56 -08:00
Kevin Sawicki
c0ab2c4ac8
Use ATOM_HOME when building cache path
2015-02-04 10:35:56 -08:00
Kevin Sawicki
4c534606c2
Use inherited ATOM_HOME env var
2015-02-04 10:35:56 -08:00
Kevin Sawicki
f330e207b4
Set ATOM_HOME env var at startup
2015-02-04 10:35:56 -08:00
Nathan Sobo
86991bbec2
Merge branch 'driskell-bugs/ident_guide_whitespace_only'
2015-02-03 21:26:25 -07:00
Kevin Sawicki
a4976c32ae
Remove release notes from event payload
...
The release notes are provided by Squirrel on Mac but not by Squirrel for
Windows and the release notes package pulls them down manually anyway
so this field is no longer needed.
Checking for the presence of the release notes previously was preventing the
event from firing on Windows which would cause old release notes to show in
the package.
Closes #3757
2015-02-03 14:57:33 -08:00
Kevin Sawicki
47bd093d68
🐎 Load 6to5 version directly from package.json
...
This prevents the entire library from being required just to check the
cache so when 6to5 is being used and all files are cached it should shave
~250ms off startup.
2015-02-03 13:36:26 -08:00
Kevin Sawicki
6ad704c1e4
Defer requiring 6to5 until it is used
...
It seems to have a require time of ~250ms
2015-02-03 09:05:34 -08:00
Kevin Sawicki
312e4e0e8a
Be graceful about pathsToOpen string value
...
Gently convert it to an array of strings before opening
Closes #5340
2015-02-02 18:17:15 -08:00
Kevin Sawicki
853ad9cee3
Re-throw stylesheet compile errors
...
This makes it consistent with other read errors. Previously a Notification
was returned in the error case causing errors downstream where the package's
stylesheets array was assumed to be a path/content tuple.
Closes atom/deprecation-cop#22
2015-02-02 17:55:36 -08:00
Lee Dohm
23b8b15261
📝 Fix broken json-schema.org link
2015-02-02 17:22:29 -08:00
Max Brunsfeld
3739995ddb
Merge pull request #5277 from atom/mb-package-json-services
...
Allow packages to specify services in their package.json files
2015-02-02 17:07:41 -08:00
Kevin Sawicki
9858916c31
🎨
2015-02-02 14:10:53 -08:00
Kevin Sawicki
18ed76f111
Add transpiler name dir segment
2015-02-02 14:09:49 -08:00
Kevin Sawicki
feb35e710c
Make 6to5 first cache segment
...
Makes it easier to blow away if needed.
2015-02-02 14:08:50 -08:00
Kevin Sawicki
2e989b502a
Remove unneeded try/catch
2015-02-02 14:08:35 -08:00
Kevin Sawicki
434c9e60a8
Remove console logging
2015-02-02 14:08:00 -08:00
Kevin Sawicki
84453d5441
Ignore errors writing to the cache
2015-02-02 14:07:39 -08:00
Kevin Sawicki
9e11914b8b
Add helper to cache without requiring
2015-02-02 14:07:11 -08:00
Kevin Sawicki
f9f7cf6d34
Add more 6to5 specs
2015-02-02 13:29:20 -08:00
Kevin Sawicki
8365ccb064
Merge pull request #5299 from bolinfest/6to5
...
Transpile all .js files beginning with the "use 6to5"; pragma with 6to5.
2015-02-02 13:11:33 -08:00
Max Brunsfeld
b24b338b2c
Add deprecated shim for atom.services global
2015-02-02 10:01:57 -08:00
Max Brunsfeld
65f2ffa55e
Rename service keys in package.json
...
* serviceProvisions -> providedServices
* serviceDependencies -> consumedServices
Signed-off-by: Nathan Sobo <nathan@github.com >
2015-02-02 10:01:50 -08:00
Max Brunsfeld
5638c7fb6a
Remove atom.services global
...
Signed-off-by: Nathan Sobo <nathan@github.com >
2015-02-02 10:01:34 -08:00
Max Brunsfeld
027ebc78c4
Respect service{Provisions,Dependencies} in packages' metadata
2015-02-02 10:00:53 -08:00
Jason Woods
2e72790e72
🐛 Fix ident guides missing on whitespace only lines with invis chars
2015-02-01 18:13:39 +00:00
Ben Ogle
9cb67a6def
📝 Fix doc reference in config
2015-01-30 16:52:19 -08:00
Ben Ogle
d3f29c4580
🎨 Fix wording
2015-01-29 17:54:41 -08:00
Ben Ogle
cd812e7a65
Transact on resetting the settings when a schema changes
2015-01-29 17:54:41 -08:00
Ben Ogle
4e6e636b8b
🎨 Reorder args to be consistent with other methods
2015-01-29 17:54:41 -08:00
Ben Ogle
083bafdb33
Handle unschema’d items in objects.
...
This is required for packages that still use configDefaults
2015-01-29 17:54:41 -08:00
Ben Ogle
adbe151c5d
Fix up the linter error
2015-01-29 17:54:41 -08:00
Ben Ogle
b9b2b4bca2
Adhere to the schemas when loading the user’s config
2015-01-29 17:54:41 -08:00