This file is indexed.

/usr/share/doublecmd/doc/en/doublecmd.ext.html is in doublecmd-help-en 0.5.5-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
  <title>Structure of doublecmd.ext file</title>
  <link rel="STYLESHEET" type="text/css" href="doublecmd.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>

<body>
  <div class="CHAPTER">
	<h1>Structure of <tt>doublecmd.ext</tt> file</h1>
	
	<div class="SECT1">
	  <p>Double Commander's extension file is based on Midnight Commander's 3.0 extension file</p>
	  <p>All lines starting with # or empty lines are ignored. All actions for file are shown in "Actions" submenu of the file context popup menu.</p>
	  <p>File format:</p>
	  <pre class="CODE">
	[extension1|extension2|...|extensionX]
	Name=Category name
	Icon=Path to icon
	action1=command1
	action2=command2
	actionX=commandX</pre>
	  <p>Where:</p>
	  <p><span class="bold">[extension]</span> or <span class="bold">[extension1|extension2 ...]</span>
	 &nbsp;&mdash; list of extensions (case insensitive!! no regular expressions!!). Also you can use "default" keyword as extension. In this case, if no command is found for sought file type, then the command from this section will be used.</p>
	 <p><span class="bold">Name</span>&nbsp;&mdash; Name of this category (shown in file association manager)</p>
	 <p><span class="bold">Icon</span>&nbsp;&mdash; Path to the icon that will be displayed for this file type in the file panel</p>
	 <p>Action can be:</p>
	 <ul>
	  <li><p>open&nbsp;&mdash; used with keypress <kbd>Enter</kbd> or mouse double click</p></li>
	  <li><p>view&nbsp;&mdash; used with keypress <kbd>F3</kbd></p></li>
	  <li><p>edit&nbsp;&mdash; used with keypress <kbd>F4</kbd></p></li>
	 </ul>
	 <p>other actions will show in the "Actions" submenu of the file context popup menu.</p>
	</div>
	<p>Command is any one-line shell command, with a simple macro substitution.</p>
	<p>Macros (case sensitive) are:</p>
	<ul>
	  <li><p><tt>{!VFS}</tt>&nbsp;&mdash; for archives&nbsp;&mdash; use virtual file system</p></li>
	  <li><p><tt>{!EDITOR}</tt>&nbsp;&mdash; call editor (internal or external, depends on the configuration)</p></li>
	  <li><p><tt>{!VIEWER}</tt>&nbsp;&mdash; call viewer (internal or external, depends on the configuration)</p></li>
	  <li><p><tt>{!SHELL}</tt>&nbsp;&mdash; use system shell (set in configuration) to execute program</p></li>
	  <li><p><tt>&lt;?command?&gt;</tt>&nbsp;&mdash; executes 'command' in the system shell and feeds the output to the next command</p></li>
	  <li><p><tt>%f</tt>&nbsp;&mdash; filename</p></li>
	  <li><p><tt>%d</tt>&nbsp;&mdash; directory</p></li>
	  <li><p><tt>%p</tt>&nbsp;&mdash; path (directory+filename)</p></li>
	</ul>
  </div>
	<div class="SECT1">
	  <p class="NAVBACK"><a href="index.html">Home</a></p>
	</div>
</body>

</html>