Changes between Initial Version and Version 2 of Ticket #4444


Ignore:
Timestamp:
02/17/23 18:34:49 (15 months ago)
Author:
andrew_b
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4444

    • Property Owner set to andrew_b
    • Property Status changed from new to accepted
    • Property Milestone changed from Future Releases to 4.8.30
  • Ticket #4444 – Description

    initial v2  
    44 
    55Put output of mc -V command (and all other commands described in 'How to report about bugs') here. 
    6  
     6{{{ 
    77 GNU Midnight Commander 4.8.29 
    88 Built with GLib 2.56.1 
     
    2121 Data types: 
    2222  char: 8; int: 32; long: 64; void *: 64; size_t: 64; off_t: 64; 
    23  
     23}}} 
    2424What steps will reproduce the problem? 
    2525 
     
    3434What is the expected output? 
    3535 
    36 The default action for markdown files. 
     36  The default action for markdown files. 
    3737 
    3838What do you see instead? 
    3939 
    40 Nothing, because mc.ext.ini wrongly says: 
     40  Nothing, because mc.ext.ini wrongly says: 
    4141 
     42{{{ 
    4243[markdown] 
    4344Regex=\.(md|mkd)$ 
    4445ShellIgnoreCase=true 
    4546Include=editor 
    46  
    47 The issue is that it uses ShelIgnoreCase=true instead of RegexIgnoreCase=true 
     47}}} 
     48The issue is that it uses !ShelIgnoreCase=true instead of !RegexIgnoreCase=true 
    4849It should be: 
    49  
     50{{{ 
    5051[markdown] 
    5152Regex=\.(md|mkd)$ 
    5253RegexIgnoreCase=true 
    5354Include=editor 
     55}}}