Changeset 5033


Ignore:
Timestamp:
May 17, 2022, 6:25:49 PM (3 years ago)
Author:
Andreas Schnellbacher
Message:
  • IsADirList: Don't use tree context menu on the empty prompt line after a dir command.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/file.e

    r5000 r5033  
    38393839      if upcase( leftstr( .filename, 8)) = '.DOS DIR' then
    38403840         fDirList = 1
     3841         leave
    38413842      elseif not IsAShell() then
    38423843         leave
    38433844      elseif upcase( leftstr( ShellGetLastCmd(), 4)) = 'DIR ' then
    3844          fDirList = 1
     3845         call ShellParsePromptStr( textline( .line), Prompt, Cmd)
     3846         if Prompt <> '' then
     3847            -- On a prompt line - this can't be a dir list line
     3848            leave
     3849         else
     3850            fDirList = 1
     3851         endif
    38453852      endif
    38463853   enddo
Note: See TracChangeset for help on using the changeset viewer.