Changes between Initial Version and Version 4 of Ticket #1884
- Timestamp:
- 12/21/09 18:53:15 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1884
- Property Votes for changeset changed from to andrew_b
- Property Summary changed from mcedit: jump to the end of the file is not logical to mcedit: jump to the end of the file is not consistent to jump to beginning of file
- Property Component changed from mc-core to mcedit
- Property Severity changed from no branch to on review
-
Ticket #1884 – Description
initial v4 1 . 1 We have two keybindongs for fast forward: 2 * '''Ctrl-End''' - '''EOF'''(end of file) 3 * '''Ctrl-Home''' - '''BOF'''(beginning of file) 4 First one preserves relative line offset and the second does not. 5 6 Thus, consider file with following contents: 7 {{{ 8 ...... 9 ...... 10 ..*... 11 ...... 12 }}} 13 (3,3) aka '''*''' is a current cursor position. 14 Pressing '''Ctrl-Home''' we appear in (1,3) - quite nice. 15 Pressing '''Ctrl-End''' we reach (4,7) - not so nice, especially if last line is lengthy.