| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-31 | Fix scrolling issue. | Stephen Blott | |
| On this page: - http://www.steephill.tv/dubai-tour/ I was seeing a scrolling problem in my live browser (j/k didn't work until I clicked on the page), but couldn't reproduce it directly in my test browser. That's worrying. Nevertheless, what was happening was that we succeeded in scrolling a test amount in one direction, but the scroll to revert failed. The consequence was that we concluded (incorrectly) that the element doesn't scroll. And j/k scrolling is broken as a result. How can it be that a scroll in one direction succeeds, but the reverse does not? This fixes the problem by not checking whether we are able to undo the scroll of our test amount. | |||
| 2015-01-31 | Visual/edit modes: rework lexical selection... | Stephen Blott | |
| - And drop "J". | |||
| 2015-01-30 | Visual/edit modes: re-introduce "dap". | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: better "yy", "dd", an so on. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: better "2daw", an so on. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: fix bug entering visual mode from edit mode. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: another minor code review. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: correctly suppress backspace/delete. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: handle "0" as count prefix, when appropriate. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: better find-mode integration. | Stephen Blott | |
| 2015-01-30 | Visual/edit modes: miscellaneous improvements.... | Stephen Blott | |
| - better definition of vimword. - fix initial selection as just one character when entering caret mode. - fix initial caret when entering visual mode from edit mode. - better selectLine. - "o" and "Y" are commands for visual mode, not movements. - simplify find mode within visual mode. - add FindMode binding for "/". | |||
| 2015-01-29 | Visual/edit modes: initial caret mode. | Stephen Blott | |
| 2015-01-29 | Visual/edit modes: more changes... | Stephen Blott | |
| - Simplify the SuppressPrintable key handler. - Rework the protectClipboard logic. - Some commands (x, X, etc) never affect the clipboard. | |||
| 2015-01-29 | Visual/edit modes: fix key suppression. | Stephen Blott | |
| 2015-01-29 | Visual/edit modes: really fix restore of insert-mode sub mode. | Stephen Blott | |
| 2015-01-29 | Visual/edit modes: fix restore of insert-mode sub mode. | Stephen Blott | |
| 2015-01-29 | Visual/edit modes: fix broken due to stray uncommented comment. | Stephen Blott | |
| 2015-01-29 | Visual/edit modes: fix w movement for contentEditable. | Stephen Blott | |
| It turns out we need to check different properties of the selection in order to correctly detect when the selection has changed in contentEditable elements. | |||
| 2015-01-28 | Visual/edit modes: fix some movements... | Stephen Blott | |
| Also, change how vim's "w" is implemented. Also some code-review/cleanup. Better dd and yy for gmail. | |||
| 2015-01-28 | Visual/edit modes: yet more minor changes. | Stephen Blott | |
| - Use a has for singletons (as it was previously), but with a distinct identity generated by Utils.getIdentity. - Fix counts not be using in a number of places. | |||
| 2015-01-28 | Visual/edit modes: minor changes... | Stephen Blott | |
| - Minor refactoring. - Better selection of entity for "daw" an friends. - dd uses count, and works for empty lines. - Count for daw, etc. - Fix bug whereby selection cleared when changing tabs. | |||
| 2015-01-27 | Visual/edit modes: minor changes. | Stephen Blott | |
| - Minor changes. - Deactivate modes on inputs from focusInput(). | |||
| 2015-01-27 | Visual/edit modes: self code review. | Stephen Blott | |
| 2015-01-27 | Visual/edit modes: miscellaneous changes. | Stephen Blott | |
| - Various argument forms for runMovement. - Better visual line mode line selection. - Include preceding white space for "daw" and friends. - Vim-like handling of "2d3w" - count is six". | |||
| 2015-01-27 | Visual/edit modes: better word-movement/"w". | Stephen Blott | |
| 2015-01-27 | Visual/edit modes: minor changes. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: "P" and "p" to copy-and-go. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: minor improvements. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: fix problem resuming entering visual line mode. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: fix problem resuming insert mode. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: better recovery after focus change. | Stephen Blott | |
| If we're in edit mode and the user changes tab, we lose the focus. That causes edit mode (and any sub mode like visual mode) to exit. When we return, we're in insert mode! With this commit, we save the state, and restore it when appropriate. | |||
| 2015-01-26 | Visual/edit modes: minor changes. | Stephen Blott | |
| 2015-01-26 | Visual/edit modes: "x" and entity moves ("daw", "cas", etc.) | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: miscellaneous improvements. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: enter insert mode directly. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: establish an initial selection. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: miscellaneous changes. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: better mode changes on blur/focus. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: implement "V" in visual mode. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: experimental "x" implementation. | Stephen Blott | |
| 2015-01-25 | Visual/edit modes: better reverseSelection(). | Stephen Blott | |
| There's an efficient way to implement reverseSelection, and an inefficient way. Unfortunately, the efficient way does not work for text inputs like textareas. So we fall back to the inefficient method in that case. | |||
| 2015-01-25 | Visual/edit modes: find (experimental). | Stephen Blott | |
| The UX around find in visual mode can be a bit weird. It may be better to remove it. | |||
| 2015-01-25 | Visual/edit modes: visual line mode. | Stephen Blott | |
| 2015-01-24 | Visual/edit modes: implement "yy". | Stephen Blott | |
| 2015-01-24 | Visual/edit modes: for "$", advance to real end of line. | Stephen Blott | |
| 2015-01-24 | Visual/edit modes: minor changes. | Stephen Blott | |
| 2015-01-24 | Visual/edit modes: more edit-mode commands. | Stephen Blott | |
| - "dw", "3dw", "d3w" - "dc", "3dc", "d3c" - "D" - "C" Also refactor enterInsertMode. Also major refactor of interface between edit and visual modes. | |||
| 2015-01-24 | Visual/edit modes: miscellaneous improvements. | Stephen Blott | |
| 2015-01-23 | Visual/edit modes: more (and better) commands. | Stephen Blott | |
| 2015-01-23 | Visual/edit modes: develop edit mode. | Stephen Blott | |
| - implement "i", "a". - fix "w" for edit mode. - try out "e" for enter edit mode. - initial implementation "o", "O" - Suppress backspace and delete. - Scroll in text areas. | |||
