mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
🎨 add spaces after commas
This commit is contained in:
@@ -4522,20 +4522,20 @@ describe "TextEditor", ->
|
||||
editor.insertText(" getPreviousWord\n")
|
||||
editor.insertText("e, => \n")
|
||||
editor.insertText(" 88 \n")
|
||||
editor.setCursorBufferPosition([0,5])
|
||||
editor.addCursorAtBufferPosition([1,7])
|
||||
editor.addCursorAtBufferPosition([2,5])
|
||||
editor.addCursorAtBufferPosition([3,3])
|
||||
editor.setCursorBufferPosition([0, 5])
|
||||
editor.addCursorAtBufferPosition([1, 7])
|
||||
editor.addCursorAtBufferPosition([2, 5])
|
||||
editor.addCursorAtBufferPosition([3, 3])
|
||||
[selection1, selection2, selection3, selection4] = editor.getSelections()
|
||||
|
||||
editor.selectToPreviousSubwordBoundary()
|
||||
expect(selection1.getBufferRange()).toEqual([[0,1], [0,5]])
|
||||
expect(selection1.getBufferRange()).toEqual([[0, 1], [0, 5]])
|
||||
expect(selection1.isReversed()).toBeTruthy()
|
||||
expect(selection2.getBufferRange()).toEqual([[1,4], [1,7]])
|
||||
expect(selection2.getBufferRange()).toEqual([[1, 4], [1, 7]])
|
||||
expect(selection2.isReversed()).toBeTruthy()
|
||||
expect(selection3.getBufferRange()).toEqual([[2,3], [2,5]])
|
||||
expect(selection3.getBufferRange()).toEqual([[2, 3], [2, 5]])
|
||||
expect(selection3.isReversed()).toBeTruthy()
|
||||
expect(selection4.getBufferRange()).toEqual([[3,1], [3,3]])
|
||||
expect(selection4.getBufferRange()).toEqual([[3, 1], [3, 3]])
|
||||
expect(selection4.isReversed()).toBeTruthy()
|
||||
|
||||
describe ".selectToNextSubwordBoundary", ->
|
||||
@@ -4545,20 +4545,20 @@ describe "TextEditor", ->
|
||||
editor.insertText("getPreviousWord\n")
|
||||
editor.insertText("e, => \n")
|
||||
editor.insertText(" 88 \n")
|
||||
editor.setCursorBufferPosition([0,1])
|
||||
editor.addCursorAtBufferPosition([1,7])
|
||||
editor.addCursorAtBufferPosition([2,2])
|
||||
editor.addCursorAtBufferPosition([3,1])
|
||||
editor.setCursorBufferPosition([0, 1])
|
||||
editor.addCursorAtBufferPosition([1, 7])
|
||||
editor.addCursorAtBufferPosition([2, 2])
|
||||
editor.addCursorAtBufferPosition([3, 1])
|
||||
[selection1, selection2, selection3, selection4] = editor.getSelections()
|
||||
|
||||
editor.selectToNextSubwordBoundary()
|
||||
expect(selection1.getBufferRange()).toEqual([[0,1], [0,4]])
|
||||
expect(selection1.getBufferRange()).toEqual([[0, 1], [0, 4]])
|
||||
expect(selection1.isReversed()).toBeFalsy()
|
||||
expect(selection2.getBufferRange()).toEqual([[1,7], [1,11]])
|
||||
expect(selection2.getBufferRange()).toEqual([[1, 7], [1, 11]])
|
||||
expect(selection2.isReversed()).toBeFalsy()
|
||||
expect(selection3.getBufferRange()).toEqual([[2,2], [2,5]])
|
||||
expect(selection3.getBufferRange()).toEqual([[2, 2], [2, 5]])
|
||||
expect(selection3.isReversed()).toBeFalsy()
|
||||
expect(selection4.getBufferRange()).toEqual([[3,1], [3,3]])
|
||||
expect(selection4.getBufferRange()).toEqual([[3, 1], [3, 3]])
|
||||
expect(selection4.isReversed()).toBeFalsy()
|
||||
|
||||
describe ".deleteToBeginningOfSubword", ->
|
||||
@@ -4568,10 +4568,10 @@ describe "TextEditor", ->
|
||||
editor.insertText(" getPreviousWord\n")
|
||||
editor.insertText("e, => \n")
|
||||
editor.insertText(" 88 \n")
|
||||
editor.setCursorBufferPosition([0,5])
|
||||
editor.addCursorAtBufferPosition([1,7])
|
||||
editor.addCursorAtBufferPosition([2,5])
|
||||
editor.addCursorAtBufferPosition([3,3])
|
||||
editor.setCursorBufferPosition([0, 5])
|
||||
editor.addCursorAtBufferPosition([1, 7])
|
||||
editor.addCursorAtBufferPosition([2, 5])
|
||||
editor.addCursorAtBufferPosition([3, 3])
|
||||
[cursor1, cursor2, cursor3, cursor4] = editor.getCursors()
|
||||
|
||||
editor.deleteToBeginningOfSubword()
|
||||
@@ -4579,30 +4579,30 @@ describe "TextEditor", ->
|
||||
expect(buffer.lineForRow(1)).toBe(' getviousWord')
|
||||
expect(buffer.lineForRow(2)).toBe('e, ')
|
||||
expect(buffer.lineForRow(3)).toBe(' ')
|
||||
expect(cursor1.getBufferPosition()).toEqual([0,1])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1,4])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2,3])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3,1])
|
||||
expect(cursor1.getBufferPosition()).toEqual([0, 1])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1, 4])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2, 3])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3, 1])
|
||||
|
||||
editor.deleteToBeginningOfSubword()
|
||||
expect(buffer.lineForRow(0)).toBe('')
|
||||
expect(buffer.lineForRow(1)).toBe(' viousWord')
|
||||
expect(buffer.lineForRow(2)).toBe('e ')
|
||||
expect(buffer.lineForRow(3)).toBe(' ')
|
||||
expect(cursor1.getBufferPosition()).toEqual([0,0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1,1])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2,1])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3,0])
|
||||
expect(cursor1.getBufferPosition()).toEqual([0, 0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1, 1])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2, 1])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3, 0])
|
||||
|
||||
editor.deleteToBeginningOfSubword()
|
||||
expect(buffer.lineForRow(0)).toBe('')
|
||||
expect(buffer.lineForRow(1)).toBe('viousWord')
|
||||
expect(buffer.lineForRow(2)).toBe(' ')
|
||||
expect(buffer.lineForRow(3)).toBe('')
|
||||
expect(cursor1.getBufferPosition()).toEqual([0,0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1,0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2,0])
|
||||
expect(cursor4.getBufferPosition()).toEqual([2,1])
|
||||
expect(cursor1.getBufferPosition()).toEqual([0, 0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1, 0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2, 0])
|
||||
expect(cursor4.getBufferPosition()).toEqual([2, 1])
|
||||
|
||||
describe ".deleteToEndOfSubword", ->
|
||||
it "deletes subwords", ->
|
||||
@@ -4611,10 +4611,10 @@ describe "TextEditor", ->
|
||||
editor.insertText("getPreviousWord \n")
|
||||
editor.insertText("e, => \n")
|
||||
editor.insertText(" 88 \n")
|
||||
editor.setCursorBufferPosition([0,0])
|
||||
editor.addCursorAtBufferPosition([1,0])
|
||||
editor.addCursorAtBufferPosition([2,2])
|
||||
editor.addCursorAtBufferPosition([3,0])
|
||||
editor.setCursorBufferPosition([0, 0])
|
||||
editor.addCursorAtBufferPosition([1, 0])
|
||||
editor.addCursorAtBufferPosition([2, 2])
|
||||
editor.addCursorAtBufferPosition([3, 0])
|
||||
[cursor1, cursor2, cursor3, cursor4] = editor.getCursors()
|
||||
|
||||
editor.deleteToEndOfSubword()
|
||||
@@ -4622,20 +4622,20 @@ describe "TextEditor", ->
|
||||
expect(buffer.lineForRow(1)).toBe('PreviousWord ')
|
||||
expect(buffer.lineForRow(2)).toBe('e, ')
|
||||
expect(buffer.lineForRow(3)).toBe('88 ')
|
||||
expect(cursor1.getBufferPosition()).toEqual([0,0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1,0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2,2])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3,0])
|
||||
expect(cursor1.getBufferPosition()).toEqual([0, 0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1, 0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2, 2])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3, 0])
|
||||
|
||||
editor.deleteToEndOfSubword()
|
||||
expect(buffer.lineForRow(0)).toBe('')
|
||||
expect(buffer.lineForRow(1)).toBe('Word ')
|
||||
expect(buffer.lineForRow(2)).toBe('e,')
|
||||
expect(buffer.lineForRow(3)).toBe(' ')
|
||||
expect(cursor1.getBufferPosition()).toEqual([0,0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1,0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2,2])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3,0])
|
||||
expect(cursor1.getBufferPosition()).toEqual([0, 0])
|
||||
expect(cursor2.getBufferPosition()).toEqual([1, 0])
|
||||
expect(cursor3.getBufferPosition()).toEqual([2, 2])
|
||||
expect(cursor4.getBufferPosition()).toEqual([3, 0])
|
||||
|
||||
describe 'gutters', ->
|
||||
describe 'the TextEditor constructor', ->
|
||||
|
||||
Reference in New Issue
Block a user