| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-08-16 | Allow command predicates to manage parameters passed to the commands | Guldoman | |
| When a command is performed with parameters, those are now passed to the predicate. The predicate can then return, after the validity boolean, any other value that will then be passed to the actual command. If the predicate only returns the validity boolean, the original parameters are passed through to the actual command. This allows predicates to manipulate the received parameters, and allows them to pass the result of an expensive computation to the actual command, which won't have to recalculate it. String and table predicates will now also return `core.active_view`. | |||
| 2022-08-09 | Steps to generalize toolbar and treeview. (#1088) | Adam | |
| 2022-06-25 | On `doc:newline` remove line content if it contains only whitespace | Guldoman | |
| 2022-06-24 | Fix full line cut when only a single line remains | Guldoman | |
| 2022-06-02 | Add `text` and `select_text` to `CommandView` options | Guldoman | |
| 2022-05-30 | Use new `CommandView:enter` options table | Guldoman | |
| 2022-05-22 | Merge branch 'master' into master-2.1master-2.1 | jgmdev | |
| 2022-05-15 | Split out reload functionality to actual document, and added in a thread to ↵ | Adam Harrison | |
| check the document, in the cases where it wouldn't be covered by dirwatch. | |||
| 2022-05-15 | Autoreload Nagview (#942) | Adam | |
| * Modified autoreload to use new dirwatch infrastructure, and added in nagview to verify that fs changes don't stomp on our changes, unless you want them to. * Split out reload functionality to actual document, and added in a thread to check the document, in the cases where it wouldn't be covered by dirwatch. * As per request from jgmdev, added in ability to show nagview always. * Changed things over to use dirwatch. * Made sure we redrew things, added in a contingency in 'save' for times when we load a non-existent file, and added some checks. | |||
| 2022-05-12 | Add utf8 support on doc lower and upper commands | jgmdev | |
| 2022-04-03 | Soft Line Wrapping (#636) | Adam | |
| Added in soft line wrapping. | |||
| 2022-03-20 | Move cursor to the beginning or the end of its selection | Guldoman | |
| When using `doc:move-to-{previous,next}-char` in a selection, we were moving the cursor to the character before the initial/after the last character of the selection. Now we follow what other editors do and move it to just before the initial/just after the final character. | |||
| 2022-03-17 | Typo. | Adam Harrison | |
| 2022-03-17 | Fixed a bunch of problems. Fixed left+click not allowing for square ↵ | Adam Harrison | |
| selections, fixed esc not exiting multicursor mode, and allowed cntrl+click to remove a cursor. | |||
| 2022-02-11 | Check entire selection to trigger `DocView:scroll_to_make_visible` | Guldoman | |
| This is needed for example when a selection has both `line1` and `col1` at 1, and the left arrow is pressed: `line2` and `col2` change, while `line1` and `col1` don't, but we still want to scroll. | |||
| 2022-02-11 | Don't scroll DocView when executing `doc:select-all` | Guldoman | |
| 2022-02-07 | Ignore empty lines in `line_comment` | Guldoman | |
| 2022-01-28 | Merge pull request #809 from lite-xl/merge-master-2.0 | Adam | |
| Merge master 2.0 | |||
| 2022-01-20 | Fixed end of block-style line comments. | Adam Harrison | |
| 2022-01-19 | Merge branch 'master-2.0' | Francesco Abbate | |
| 2022-01-18 | Streamlined, and fixed guldo's problem. | Adam Harrison | |
| 2022-01-18 | Fixed issue first mentioned in #771. | Adam Harrison | |
| 2022-01-13 | Fix error to close view when deleting a file | Francesco Abbate | |
| 2022-01-08 | comment the entire line when using block comment | takase1121 | |
| 2022-01-02 | make set_selections consistent | takase1121 | |
| 2022-01-02 | refactor toggle-block-comments, make command spaces aware, set selections ↵ | takase1121 | |
| correctly | |||
| 2021-12-26 | toggle comment for whole line if nothing is selected | takase1121 | |
| 2021-12-26 | fallback to toggle-line-comment and vice versa if needed | takase1121 | |
| 2021-12-25 | add toggle-block-comment | takase1121 | |
| 2021-12-21 | Restores external pastes to be normal pastes. | Adam Harrison | |
| 2021-12-12 | Revert "Make pasting multiple lines from clipboard same way as a single line" | Jipok | |
| This reverts commit 6a135f7c06bc5d17f1df7bc24c44b13075050963. | |||
| 2021-12-10 | Make pasting multiple lines from clipboard same way as a single line | Jipok | |
| 2021-12-08 | Make cursor_clipboard globa, not per doc | Jipok | |
| 2021-12-06 | Correct paste after 'Cut/copy whole line' | Jipok | |
| 2021-12-05 | Copy/cut whole line if selection empty | Jipok | |
| 2021-11-27 | Merge pull request #682 from Guldoman/indent_refactor | Adam | |
| Refactor how to get the indentation of a `Doc` | |||
| 2021-11-23 | Added in cut, copy and paste to the context menu. Also removed find pattern, ↵ | Adam Harrison | |
| as that's no longer a valid command. Also made it so commands only show up if their predicates are valid. | |||
| 2021-11-20 | Use the new `Doc:get_indent_info` throughout `core` | Guldoman | |
| 2021-11-19 | Selection expands by word or line on double or triple click followed by drag. | Joshua Minor | |
| 2021-11-14 | Refactored things out. | Adam Harrison | |
| 2021-11-14 | Keymap. | Adam Harrison | |
| 2021-11-14 | Rearranged things to make a bit more sense. | Adam Harrison | |
| 2021-11-14 | Moved commands out to the outer event loop. | Adam Harrison | |
| 2021-11-14 | Added in double, and triple clicking. | Adam Harrison | |
| 2021-11-14 | Added in clicks to keymap. | Adam Harrison | |
| 2021-10-02 | Remove duplicate command declaration (#565) | Rongfei Wang | |
| 2021-09-30 | Remove duplicate command declaration (#565) | Rongfei Wang | |
| 2021-08-14 | Merge pull request #390 from adamharrison/cursor-fixes | Adam | |
| Fixed multilne cursors at the edges of docuemnts. | |||
| 2021-08-14 | Fixed multilne cursors at the edges of docuemnts. | Adam Harrison | |
| 2021-08-11 | Reverted hash changes; simply copy entire clipboard. | Adam Harrison | |
