<table><tr><td style="">gmolteni added a comment.
</td><a style="text-decoration: none; padding: 4px 8px; margin: 0 8px 8px; float: right; color: #464C5C; font-weight: bold; border-radius: 3px; background-color: #F7F7F9; background-image: linear-gradient(to bottom,#fff,#f1f0f1); display: inline-block; border: 1px solid rgba(71,87,120,.2);" href="https://phabricator.kde.org/D17124">View Revision</a></tr></table><br /><div><div><blockquote style="border-left: 3px solid #8C98B8;
          color: #6B748C;
          font-style: italic;
          margin: 4px 0 12px 0;
          padding: 8px 12px;
          background-color: #F8F9FC;">
<div style="font-style: normal;
          padding-bottom: 4px;">In <a href="https://phabricator.kde.org/D17124#365557" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">D17124#365557</a>, <a href="https://phabricator.kde.org/p/gmolteni/" style="
              border-color: #f1f7ff;
              color: #19558d;
              background-color: #f1f7ff;
                border: 1px solid transparent;
                border-radius: 3px;
                font-weight: bold;
                padding: 0 4px;">@gmolteni</a> wrote:</div>
<div style="margin: 0;
          padding: 0;
          border: 0;
          color: rgb(107, 116, 140);"><blockquote style="border-left: 3px solid #8C98B8;
          color: #6B748C;
          font-style: italic;
          margin: 4px 0 12px 0;
          padding: 8px 12px;
          background-color: #F8F9FC;">
<div style="font-style: normal;
          padding-bottom: 4px;">In <a href="https://phabricator.kde.org/D17124#365212" style="background-color: #e7e7e7;
          border-color: #e7e7e7;
          border-radius: 3px;
          padding: 0 4px;
          font-weight: bold;
          color: black;text-decoration: none;">D17124#365212</a>, <a href="https://phabricator.kde.org/p/ngraham/" style="
              border-color: #f1f7ff;
              color: #19558d;
              background-color: #f1f7ff;
                border: 1px solid transparent;
                border-radius: 3px;
                font-weight: bold;
                padding: 0 4px;">@ngraham</a> wrote:</div>
<div style="margin: 0;
          padding: 0;
          border: 0;
          color: rgb(107, 116, 140);"><p>Thanks! I can verify that this fixes the case where you do <tt style="background: #ebebeb; font-size: 13px;">kate file1 file2 file3</tt> when kate is not already open; now they are opened in the correct order! But when Kate <em>is</em> already open with a few files in tabs, the new files are opened in tabs but in the wrong order. Do you think you could fix that too?</p></div>
</blockquote></div>
</blockquote>

<p>I think that perhaps fixing it is an advanced topic.<br />
 The original fix I did was to reverse the order of a foreach loop.<br />
 I already located the other foreach loop that is necesary to reverse in order to improve that second case,<br />
 but the final result needs a third fix (i will try to but i guess it requires scratching the code much deeper).</p>

<p>With the current fix (foreach at line 178@kateapp.cpp) :</p>

<p>kate f1 f2 f3     --- 1st  invocation produces --->     f1   f2   f3<br />
 kate f4 f5 f6     --- 2nd invocation produces --->     f6   f5   f4   f1   f2   f3</p>

<p>Fixing a second foreach loop (foreach at line 423@main.cpp) will gave us this:</p>

<p>kate f4 f5 f6     --- 2nd invocation produces ---> f4  f5  f6   f1  f2   f3</p>

<p>However, the main issue here is that i have no idea how to let kate to insert the files<br />
 to the right of list instead of the left of the list.</p>

<p>I will invest some time trying to understand kate deeper, but I have no idea where how to find<br />
 that part of code.</p></div></div><br /><div><strong>REPOSITORY</strong><div><div>R40 Kate</div></div></div><br /><div><strong>REVISION DETAIL</strong><div><a href="https://phabricator.kde.org/D17124">https://phabricator.kde.org/D17124</a></div></div><br /><div><strong>To: </strong>gmolteni, cfeck, zetazeta, Kate, ngraham<br /><strong>Cc: </strong>zetazeta, cfeck, ngraham, kwrite-devel, michaelh, demsking, cullmann, sars, dhaumann<br /></div>