Changes between Initial Version and Version 4 of Ticket #1884


Ignore:
Timestamp:
12/21/09 18:53:15 (14 years ago)
Author:
slyfox
Comment:

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 . 
     1We have two keybindongs for fast forward: 
     2* '''Ctrl-End''' - '''EOF'''(end of file) 
     3* '''Ctrl-Home''' -  '''BOF'''(beginning of file) 
     4First one preserves relative line offset and the second does not. 
     5 
     6Thus, consider file with following contents: 
     7{{{ 
     8...... 
     9...... 
     10..*... 
     11...... 
     12}}} 
     13(3,3) aka '''*''' is a current cursor position. 
     14Pressing '''Ctrl-Home''' we appear in (1,3) - quite nice. 
     15Pressing '''Ctrl-End''' we reach (4,7) - not so nice, especially if last line is lengthy.