mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
Newline at end of file 💄
This commit is contained in:
2
spec/fixtures/sample.coffee
vendored
2
spec/fixtures/sample.coffee
vendored
@@ -20,4 +20,4 @@ class quicksort
|
||||
noop: ->
|
||||
# just a noop
|
||||
|
||||
exports.modules = quicksort
|
||||
exports.modules = quicksort
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{runSpecSuite} = require 'jasmine-helper'
|
||||
|
||||
document.title = "Spec Suite"
|
||||
runSpecSuite "spec-suite"
|
||||
runSpecSuite "spec-suite"
|
||||
|
||||
@@ -4,4 +4,4 @@ window.keymap.bindKeys '*'
|
||||
right: 'move-right'
|
||||
left: 'move-left'
|
||||
down: 'move-down'
|
||||
up: 'move-up'
|
||||
up: 'move-up'
|
||||
|
||||
@@ -2,4 +2,4 @@ window.keymap.bindKeys '*',
|
||||
'ctrl-?': 'keybindings-view:attach'
|
||||
|
||||
window.keymap.bindKeys ".keybindings-view",
|
||||
'escape': 'keybindings-view:detach'
|
||||
'escape': 'keybindings-view:detach'
|
||||
|
||||
@@ -29,4 +29,4 @@ class PaneColumn extends PaneGrid
|
||||
Math.max(@horizontalChildUnits()...)
|
||||
|
||||
verticalGridUnits: ->
|
||||
_.sum(@verticalChildUnits())
|
||||
_.sum(@verticalChildUnits())
|
||||
|
||||
@@ -1 +1 @@
|
||||
module.exports = require 'keybindings-view/keybindings-view'
|
||||
module.exports = require 'keybindings-view/keybindings-view'
|
||||
|
||||
@@ -11,4 +11,4 @@ class FileView extends View
|
||||
initialize: (@file) ->
|
||||
|
||||
getPath: ->
|
||||
@file.path
|
||||
@file.path
|
||||
|
||||
@@ -1 +1 @@
|
||||
module.exports = require 'tree-view/tree-view'
|
||||
module.exports = require 'tree-view/tree-view'
|
||||
|
||||
@@ -100,4 +100,4 @@ module.exports =
|
||||
deferred = $.Deferred()
|
||||
$native.asyncList path, true, (subpaths) ->
|
||||
deferred.resolve subpaths
|
||||
deferred
|
||||
deferred
|
||||
|
||||
@@ -2,4 +2,4 @@ module.exports =
|
||||
class Native
|
||||
@alert: (args...) -> $native.alert(args...)
|
||||
|
||||
@moveToTrash: (args...) -> $native.moveToTrash(args...)
|
||||
@moveToTrash: (args...) -> $native.moveToTrash(args...)
|
||||
|
||||
@@ -44,4 +44,4 @@ _.mixin
|
||||
# I choose to escape every character with '\'
|
||||
# even though only some strictly require it when inside of []
|
||||
regex = RegExp('[' + specials.join('\\') + ']', 'g')
|
||||
string.replace(regex, "\\$&");
|
||||
string.replace(regex, "\\$&");
|
||||
|
||||
Reference in New Issue
Block a user