Commit Graph

196 Commits

Author SHA1 Message Date
Luke Pommersheim
7bb8586905 now possible to always move lines down at the end of the file 2015-08-23 19:30:10 +02:00
Luke Pommersheim
b394b2c903 preserve folds when making new selections 2015-08-23 19:29:14 +02:00
Luke Pommersheim
b29f2ae5a8 removed unnecessary + operator 2015-08-23 19:29:14 +02:00
Luke Pommersheim
e74b8b6ae2 use Point as insertion and no need to post-fix newline 2015-08-23 19:29:14 +02:00
Luke Pommersheim
5b698cfa2b update typo in comment 2015-08-23 17:50:23 +02:00
Luke Pommersheim
0de26c306a fix folds accidentally becoming unfolded 2015-08-20 11:09:03 +02:00
Luke Pommersheim
0bb89e9191 change moveLineDown to handle multiple selections, mimic moveLineUp 2015-08-15 11:18:25 +02:00
Luke Pommersheim
5f249b8af9 revert to using selection ranges instead of selection objects 2015-08-13 18:02:01 +02:00
Nathan Sobo
75f341263a Handle multiple selections on the same line 2015-08-13 18:02:01 +02:00
Nathan Sobo
e27ff93f97 Move all lines spanned by selection in a single operation 2015-08-13 18:02:01 +02:00
Nathan Sobo
5d1e7469a1 Reassign selection range immediately when moving lines up 2015-08-13 18:02:01 +02:00
Nathan Sobo
7d98fc141f Operate on selection objects, not just ranges 2015-08-13 18:02:01 +02:00
Nathan Sobo
2fc2c074be Append line ending if it isn’t present 2015-08-13 18:02:01 +02:00
Nathan Sobo
b14f3d8d92 Don’t move any lines if some lines can’t move 2015-08-13 18:02:01 +02:00
Nathan Sobo
de500ce41a Compute insertDelta more simply 2015-08-13 18:02:01 +02:00
Nathan Sobo
b8d02dedde Use row-oriented methods 2015-08-13 18:02:01 +02:00
Nathan Sobo
6d2c4b61b4 Wrap all line movements in transact 2015-08-13 18:02:00 +02:00
Luke Pommersheim
412ea3242a CR: remove return statement 2015-08-13 18:02:00 +02:00
Luke Pommersheim
99a2907dea moveLineDown now loops through all selectedBufferRanges in reverse sorted order so none of the lines move if the bottom-most selection is at the last line 2015-08-13 18:02:00 +02:00
Luke Pommersheim
09ab3e4a75 moveLineUp now loops though all selectedBufferRanges in sorted order so as to return immediately if the first selection is at the start row 2015-08-13 18:02:00 +02:00
Nathan Sobo
52e640156c Defer selection merge until dragging completes 2015-08-03 21:43:43 -06:00
Nathan Sobo
c5bb4a27a5 Add option to make temporary file backups when saving 2015-07-29 11:19:16 -06:00
Antonio Scandurra
d46fea9d10 Emit did-insert-text on pasteText() 2015-07-28 10:38:11 +02:00
Ash Wilson
83e807bc9c 📝 Update docs for TextEditor.decorateMarker 2015-07-27 11:38:01 -04:00
Max Brunsfeld
a60f330628 Default maintainHistory marker option to false 2015-07-21 13:27:05 -07:00
Nathan Sobo
cd8d158a00 When splitting selection into lines, destroy original selection last
This avoids an assertion failure due to destroying the last selection,
so we can reduce the noise and find code paths that destroy it
incorrectly.
2015-07-17 13:16:12 -07:00
Joe Fitzgerald
b3b046aa66 Add activationHooks To package.json
- Trigger the `{grammar-package-name}:grammar-used` hook when grammar is set for tokenized-buffer
2015-07-09 02:33:17 -04:00
Nathan Sobo
de8d1d95d8 Add assertion about removing the last selection 2015-07-09 00:23:11 -05:00
Max Brunsfeld
8c3400c084 Emit will-insert-text event when pasting 2015-07-06 18:29:44 -07:00
Nathan Sobo
e472830063 Merge remote-tracking branch 'origin/master' into dsandstrom-add-subword-cursors-4 2015-06-30 22:55:40 -05:00
Nathan Sobo
83bddaf34e Merge branch 'master' into add-subword-cursors-4
Conflicts:
	spec/text-editor-spec.coffee
2015-06-30 15:43:33 -05:00
Nathan Sobo
82e25872b2 Handle indentation with mixed tabs and spaces 2015-06-30 15:31:11 -05:00
Tony Han
776eee2413 📝 fix doc for TextEditor setText 2015-06-20 17:58:31 +08:00
Max Brunsfeld
c43233892b Merge pull request #7225 from lpommers/add-remove-cursor-when-there-are-multiple-cursors-if-cmd-clicking-on-it
Add remove cursor when there are multiple cursors and cmd clicking on it
2015-06-12 10:41:17 -07:00
Luke Pommersheim
9f0f4c0530 refactor getCursorAtScreenPosition to avoid temporary array 2015-06-12 08:38:25 +02:00
Luke Pommersheim
3b3dc83a38 📝 updating docs for getCursorAtScreenPosition - can also take an {Array} 2015-06-12 08:36:44 +02:00
Kevin Sawicki
7a6a48d7ea Move getSaveDialogOptions near other save methods 2015-06-11 15:31:43 -07:00
Kevin Sawicki
a0778217df Merge pull request #7145 from FoldingText/Item-provides-save-panel-options
Item provides save panel options
2015-06-11 15:28:24 -07:00
Luke Pommersheim
5822eb11f1 function that returns the first matched Cursor at a given screen position Point if it exists in that location 2015-06-11 13:02:14 +02:00
Jesse Grosjean
1dbfd0b5ac Rename to getSaveDialogOptions and document in TextEditor 2015-06-08 16:20:53 -04:00
Devon Carew
786f3399ad Update text-editor.coffee
Fix a type in `src/text-editor.coffee` (`adter` => `after`).
2015-06-06 22:17:14 -07:00
Nathan Sobo
de508db9b2 Implement basic large file mode for editor
* Don’t tokenize
* Don’t build metadata to support folds and soft wraps

Remaining issues:

* Max line length is hard coded
* Foldable indicators should be disabled
* Folding via API should be disallowed
2015-06-05 02:25:57 +02:00
Max Brunsfeld
f5895d8b0b presenter: use 'markers-updated' event for state updates
Signed-off-by: Nathan Sobo <nathan@github.com>
2015-06-03 17:58:44 -07:00
Max Brunsfeld
76c696f1a2 Merge branch 'master' into mb-optimize-marker-observation
Conflicts:
	src/text-editor-component.coffee
	src/text-editor-presenter.coffee
2015-06-03 09:12:07 -07:00
Kevin Sawicki
34591d3542 Catch read errors during deserialization
Prevents Atom from failing to open because of a read error with a
serialized editor.
2015-06-01 17:54:43 -07:00
Max Brunsfeld
6f553f234c Add TextEditor::observeMarkers, use it in presenter
Signed-off-by: Nathan Sobo <nathan@github.com>
2015-05-29 17:21:23 -07:00
Max Brunsfeld
9e3c2d093b Avoid double transaction when typing 2015-05-26 17:09:59 -07:00
Nathan Sobo
2379b3803f Revert "Revert "Merge pull request #6757 from atom/ns-less-memory-for-tokens""
This reverts commit 7cb0bc3bc2.
2015-05-21 19:56:52 +02:00
Nathan Sobo
7cb0bc3bc2 Revert "Merge pull request #6757 from atom/ns-less-memory-for-tokens"
This reverts commit 0cd1f110b5, reversing
changes made to d75d202d33.

Conflicts:
	package.json
2015-05-21 16:25:23 +02:00
Nathan Sobo
e694b18ae2 Merge branch 'master' into ns-less-memory-for-tokens
Conflicts:
	spec/tokenized-buffer-spec.coffee
	src/tokenized-buffer.coffee
2015-05-14 18:55:16 +02:00