Changes between Initial Version and Version 2 of Ticket #4444
- Timestamp:
- 02/17/23 18:34:49 (22 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4444
- Property Status changed from new to accepted
- Property Owner set to andrew_b
- Property Milestone changed from Future Releases to 4.8.30
-
Ticket #4444 – Description
initial v2 4 4 5 5 Put output of mc -V command (and all other commands described in 'How to report about bugs') here. 6 6 {{{ 7 7 GNU Midnight Commander 4.8.29 8 8 Built with GLib 2.56.1 … … 21 21 Data types: 22 22 char: 8; int: 32; long: 64; void *: 64; size_t: 64; off_t: 64; 23 23 }}} 24 24 What steps will reproduce the problem? 25 25 … … 34 34 What is the expected output? 35 35 36 The default action for markdown files.36 The default action for markdown files. 37 37 38 38 What do you see instead? 39 39 40 Nothing, because mc.ext.ini wrongly says:40 Nothing, because mc.ext.ini wrongly says: 41 41 42 {{{ 42 43 [markdown] 43 44 Regex=\.(md|mkd)$ 44 45 ShellIgnoreCase=true 45 46 Include=editor 46 47 The issue is that it uses ShelIgnoreCase=true instead ofRegexIgnoreCase=true47 }}} 48 The issue is that it uses !ShelIgnoreCase=true instead of !RegexIgnoreCase=true 48 49 It should be: 49 50 {{{ 50 51 [markdown] 51 52 Regex=\.(md|mkd)$ 52 53 RegexIgnoreCase=true 53 54 Include=editor 55 }}}