Changes between Initial Version and Version 3 of Ticket #5


Ignore:
Timestamp:
01/11/14 15:21:38 (10 years ago)
Author:
ossi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #5

    • Property Branch state changed from to no branch
    • Property Milestone changed from to future releases
  • Ticket #5 – Description

    initial v3  
    77||Release:||4.6.0|Operating System:|GNU/Linux|| 
    88 
    9 Discussion: 
     9Original submission: 
    1010{{{ 
    11 Mon 21 Jun 2004 02:24:16 PM UTC, comment #1: 
     11Currently, changing to a new directory appends a directory entry in  
     12top of the directory history and removes any previous identical  
     13entries from the history. This unique append is a really handy  
     14feature, but isn't it more convenient and intuitive to insert the  
     15new directory entry right after the current directory in the history 
     16list? This way when you want to visit all of the subdirectories of  
     17the current directory you can get back to the current directory  
     18conveniently with only one "back" command. As it is now, to get back 
     19to the parent directory I have to go back in history an increasing  
     20number of times as each new subdirectory I visit is increasing the  
     21distance in the history list from the last entry to its parent. 
    1222 
     23Of course, this would involve changing list_append_unique in util.c  
     24and another parameter to this method indicating where in history we  
     25are currently. The method should still remove entries which are not  
     26unique. 
     27 
     28I am waiting for your feedback in case you disagree with me. 
     29 
     30Best Regards, 
     31Vasco 
     32}}} 
     33 
     34Comment 1 by Anonymous at Mon 21 Jun 2004 02:24:16 PM UTC: 
     35{{{ 
    1336The problem is that the functions "Back" and "Forward" in history  
    1437lose their appeal when the sequence of the history list changes.  
     
    5376Regards, 
    5477Vasco 
    55         Anonymous 
    56 Sun 16 May 2004 02:13:54 PM UTC, original submission: 
    57  
    58 Currently, changing to a new directory appends a directory entry in  
    59 top of the directory history and removes any previous identical  
    60 entries from the history. This unique append is a really handy  
    61 feature, but isn't it more convenient and intuitive to insert the  
    62 new directory entry right after the current directory in the history 
    63 list? This way when you want to visit all of the subdirectories of  
    64 the current directory you can get back to the current directory  
    65 conveniently with only one "back" command. As it is now, to get back 
    66 to the parent directory I have to go back in history an increasing  
    67 number of times as each new subdirectory I visit is increasing the  
    68 distance in the history list from the last entry to its parent. 
    69  
    70 Of course, this would involve changing list_append_unique in util.c  
    71 and another parameter to this method indicating where in history we  
    72 are currently. The method should still remove entries which are not  
    73 unique. 
    74  
    75 I am waiting for your feedback in case you disagree with me. 
    76  
    77 Best Regards, 
    78 Vasco 
    7978}}}