simurai
dcf48c937a
⬆️ one-dark/light-syntax@v1.7.1
2017-01-12 13:30:47 +09:00
simurai
4104b40b4e
Revert " ⬆️ one-dark/light-syntax@v1.7.0"
...
This reverts commit a5491a9d60 .
2017-01-12 09:41:04 +09:00
Wliu
2f65f47d0d
Merge pull request #13592 from atom/wl-fix-autocomplete-css
...
Fix autocomplete-css specs
2017-01-11 14:22:30 -05:00
Wliu
6be4c5793d
Fix autocomplete-css specs
2017-01-11 13:30:39 -05:00
Nathan Sobo
c3ac59a617
Merge pull request #13583 from atom/ns-skip-periodic-serialization-of-huge-buffers
...
Disable periodic serialization for buffers > 2MB
2017-01-11 11:27:05 -07:00
Lee Dohm
0c2d85d6c0
Merge pull request #13585 from atom/fb-two-digits
...
Always reserve two digits on the line number gutter
2017-01-11 10:25:59 -08:00
simurai
415f7c1b05
⬆️ base16-tomorrow-dark/light-theme@v1.5.0
2017-01-11 15:10:45 +09:00
simurai
a5491a9d60
⬆️ one-dark/light-syntax@v1.7.0
2017-01-11 14:14:35 +09:00
simurai
f761a4852f
⬆️ one-dark/light-ui@v1.9.1
2017-01-11 14:01:06 +09:00
Wliu
30be540d7f
⬆️ language-css@0.42.0
...
/cc @Alhadis
2017-01-10 23:03:44 -05:00
Christopher Chedeau
ef7ce7cd3a
Always reserve two digits on the line number gutter
...
We are working on a feature that changes the content of the editor when you mouse over some things and it makes the UI jump when going from 1 line to > 10. This makes the UI feel really bad.
I've looked at Sublime and the 1-9 state is the same as 1-99, only when you reach 100 lines then it jumps. I think that it is a better behavior as you want to minimize jumps as much as possible and it is extremely likely that you are going to hit the 9-10 lines threshold.

While this is being reviewed and until the new version shipped, we are going to monkeypatch Atom in order to get this feature.
```js
var presenter = atom.textEditors.editors.entries().next().value[0].presenter.__proto__;
var old_updateLineNumberGutterState = presenter.updateLineNumberGutterState;
presenter.updateLineNumberGutterState = function() {
var res = old_updateLineNumberGutterState.apply(this, arguments);
this.lineNumberGutter.maxLineNumberDigits = Math.max(2, this.lineNumberGutter.maxLineNumberDigits);
return res;
};
```
Released under CC0
2017-01-10 18:14:50 -08:00
Damien Guard
5a1233c14b
Merge pull request #13584 from atom/dg-remove-win64-workaround
...
Remove x64 delta workaround code in create-windows-installer
2017-01-10 16:34:09 -08:00
Damien Guard
71b17d95d6
Remove code that stopped create-windows-installer looking for deltas on x64
2017-01-10 15:30:17 -08:00
Nathan Sobo
dea7cc23e3
Disable periodic serialization for buffers > 2MB
...
Writing so much data to IndexedDB is blocking the main thread for
perceptible amounts of time. A patch-based representation of the
modified state could allows us to pay only for what has changed, but is
too complex to justify implementing right now to support full crash
recovery for large files.
Signed-off-by: Max Brunsfeld <maxbrunsfeld@github.com >
2017-01-10 15:55:36 -07:00
Damien Guard
6725a4194e
Merge pull request #12987 from ivernus/patch-1
...
Add commands for non DNS (rhel/CentOS) hosts
2017-01-10 12:39:00 -08:00
Damien Guard
1112e41c5a
Merge pull request #13007 from torn4dom4n/ln-update-keybinding
...
Update keybinding
2017-01-10 12:31:40 -08:00
Damien Guard
abccce6ee9
Merge pull request #12944 from atom/b3-update-contribution-links
...
Exclude beginner issues from help wanted issues
2017-01-10 12:30:29 -08:00
Max Brunsfeld
0eaee936bb
⬆️ find-and-replace
2017-01-10 10:46:45 -08:00
Hubot
ba8f1150fe
1.15.0-dev
2017-01-10 12:13:20 -06:00
Wliu
8602643be9
⬆️ language-shellscript@0.25.0
2017-01-10 11:53:33 -05:00
Damien Guard
ec3d071177
⬆️ notifications
2017-01-09 20:31:46 -08:00
Damien Guard
5a558e1702
⬆️ notifications
2017-01-09 20:14:21 -08:00
Damien Guard
683074a2d8
Make stack trace readable in spec runner, fixes #13576
2017-01-09 19:33:16 -08:00
Damien Guard
3cf7859743
⬆️ settings-view
2017-01-09 19:22:31 -08:00
Max Brunsfeld
d6bddb4ce6
Avoid assertions about application.json in main process test
...
We can test the user-facing behavior by launching a second instance
of AtomApplication.
Refs #13564
2017-01-09 11:31:25 -08:00
Max Brunsfeld
6dd35ec9d5
Merge pull request #13564 from vovkasm/fix-12495
...
Save initial paths immediately on change
2017-01-09 11:29:32 -08:00
Nathan Sobo
fb7e25ece6
⬆️ snippets
2017-01-09 12:08:27 -07:00
Nathan Sobo
c5ac436d68
Merge pull request #13575 from atom/ns-fix-built-in-resource-openers
...
Don't add pane items in built-in resource openers
2017-01-09 12:07:21 -07:00
Nathan Sobo
730c7c82a8
Don't add pane items in built-in resource openers
...
Calling `workspace.open` in an opener doesn't work properly with options
like `split: left` because it causes the opened item to be added to the
workspace as a side-effect. Since workspace openers are intended to be
used during the process of calling `workspace.open`, we need to use
`openTextFile`, which just creates an editor but does not attach it to
the workspace.
2017-01-09 10:57:31 -07:00
Nathan Sobo
3430040b8d
⬆️ welcome
2017-01-09 10:53:46 -07:00
Antonio Scandurra
dddd523b4e
Revert "Merge pull request #13421 from philwyett-hemi/rpm_dev"
...
This reverts commit 86e34d96a9 .
2017-01-09 15:55:49 +01:00
Antonio Scandurra
629656403c
Merge pull request #13543 from atom/ns-upgrade-keymap
...
Upgrade atom-keymap to fix issues with multiple layouts on Linux
2017-01-09 14:42:50 +01:00
Ian Olsen
157e8e1c74
⬆️ tabs@0.104.1
2017-01-07 18:38:50 -08:00
Ian Olsen
e9369ca6af
⬆️ tabs
2017-01-07 13:05:16 -08:00
Vladimir Timofeev
a7dda0e6f6
Refactor test code
2017-01-08 00:03:36 +03:00
Vladimir Timofeev
be57e4cd48
Additional check that storage/application.json exists
2017-01-07 23:58:28 +03:00
Vladimir Timofeev
4d5312fec5
Restore test behaviour to check content of storage/application.json
2017-01-07 23:52:29 +03:00
=
1fb066ad68
Really fix tests on windows
...
Path names with backslashes was not quoted.
2017-01-07 23:11:31 +03:00
Vladimir Timofeev
94f28a3877
Another try to fix tests on Windows.
...
Wait for ipc.
2017-01-07 14:10:24 +03:00
Vladimir Timofeev
4ba6919d4d
Try fix tests on Windows.
...
Only count AtomApplication#saveState calls, not saved content.
2017-01-07 13:04:05 +03:00
Vladimir Timofeev
bc77a79e86
Add test to ensure the state saved when project folders changed.
2017-01-07 10:59:22 +03:00
Wliu
8ea115cfee
⬆️ language-xml@0.34.15
2017-01-06 17:26:18 -05:00
Vladimir Timofeev
a21841e5f3
Merge commit '1320ff28c39afd563820b30b43389ea38552e74c' into fix-12495
2017-01-07 01:19:50 +03:00
Ian Olsen
b6ecaf66de
Merge pull request #13549 from atom/io-user-keymap-event
...
Add did-load-user-keymap event
2017-01-06 11:32:07 -08:00
Antonio Scandurra
63ad40a877
⬆️ atom-keymap
2017-01-06 14:37:39 +01:00
Ian Olsen
d35a63aa6a
Basic test for user keymap loaded event
2017-01-05 17:12:02 -08:00
Nathan Sobo
805536e728
⬆️ atom-keymap
2017-01-05 14:48:53 -07:00
Ian Olsen
8d212b10d4
Add an event for after the user keymap has loaded.
2017-01-05 10:49:09 -08:00
Wliu
09ab7d6863
⬆️ language-go@0.43.1
2017-01-05 13:05:18 -05:00
Wliu
0156f2cb33
⬆️ language-xml@0.34.14
2017-01-05 13:04:37 -05:00