<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://jsimlo.sk/notepad/manual/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jsimlo</id>
	<title>TED Notepad - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://jsimlo.sk/notepad/manual/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jsimlo"/>
	<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php/Special:Contributions/Jsimlo"/>
	<updated>2026-04-13T14:28:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Filters_page&amp;diff=6047</id>
		<title>Filters page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Filters_page&amp;diff=6047"/>
		<updated>2025-05-24T20:07:22Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|dialog|Settings:Filters}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters|Filters}}''' page allows to manage, add, remove or edit {{feature|Text Filters}}. See {{feature|Text Filters}} for further details.&lt;br /&gt;
&lt;br /&gt;
The {{field|Settings:Filters|New}} button allows to add new entry into the list of {{feature|Text Filters}}, the {{field|Settings:Filters|Edit}} button allows to modify any entry within the list and the {{field|Settings:Filters|Delete}} button removes selected entry from the list. Use the {{field|Settings:Filters|Up}} and {{field|Settings:Filters|Down}} buttons to move individual entries within the list and thus within the {{menu|Text Filters}} menu.&lt;br /&gt;
&lt;br /&gt;
Note: The {{field|Settings:Filters|New}} and {{field|Settings:Filters|Edit}} buttons invoke the {{dialog|Settings:Filters:Filter}} definition dialog, which is described below. Note: See {{feature|Text Filters}} as well for further details about filters.&lt;br /&gt;
&lt;br /&gt;
Note: All changes to the list of {{feature|Text Filters}} must be confirmed by confirming the {{dialog|Settings}} dialog. If the {{dialog|Settings}} dialog is cancelled, any recent changes to the list of {{feature|Text Filters}} are discarded.&lt;br /&gt;
&lt;br /&gt;
===={{dialog|Settings:Filters:Filter}} dialog fields and options====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Name}}''' field is the name of the filter, as it appears in the {{menu|Text Filters}} menu roster.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Command}}''' field contains the command to be executed upon filter invocation. Variables in this command are replaced by actual values.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Description}}''' field contains description of the command shown upon filter invocation. It should contain filter documentation and other relevant information, available arguments and expected variables, etc.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Skip launch dialog}}''' option tells that the filter needs no user input upon invocation and should be launched directly.&lt;br /&gt;
&lt;br /&gt;
Note: If the command contains any variables, they are populated with empty strings.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Push input}}''' option tells to populate the input of the filter with text selected upon such invocation.&lt;br /&gt;
&lt;br /&gt;
Note: This is default behaviour for most text-processing filters. However, filters which process filenames rather than selections or receive the selection as an argument often do not read the input.&lt;br /&gt;
&lt;br /&gt;
Note: See {{field|Settings:Filters:Filter|Ignore return code}} option below as well.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Capture output}}''' option tells to retrieve the output of the filter and use it to replace the selection or display it as a message.&lt;br /&gt;
&lt;br /&gt;
Note: This is default behaviour for most text-processing filters. However, filters which process filenames rather than selections often do not produce any relevant output at all.&lt;br /&gt;
&lt;br /&gt;
Note: See {{field|Settings:Filters:Filter|Ignore return code}} option below as well.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Mix stdout/stderr}}''' option tells to mix standard output and error output of the filter together. By default, standard output is used to replace the selection and error output for displaying messages upon filter errors and failures. However, some filters may use standard and error output in a different fashion and the user may need to mix these two together into one stream.&lt;br /&gt;
&lt;br /&gt;
Note: The mixing is done directly on the system level, by using the same pipe for both output ends, thus the mixed output resembles the original chronological order. However, some programming languages (e.g. Java) might buffer the outputs separatelly before flushing to the system pipes, thus potentially re-ordering the text. Such problem has to be dealt with within such languages.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Display as message}}''' option tells to display the results as a message instead of replacing the current selection with it.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|UTF-8}}''' option tells to encode the selection in UTF-8 before pushing it into the filter and also decode the results before replacing the selection or displaying them in a message.&lt;br /&gt;
&lt;br /&gt;
Note: Both input and output has to be UTF-8, or neither. It is not possible to push UTF-8 and read ANSI for example.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Ignore return code}}''' option tells to disregard the return code of the filter and accept whatever results it produces as success.&lt;br /&gt;
* If no output is expected from the filter ({{field|Settings:Filters:Filter|Capture output}} turned off), TED Notepad does not wait until the filter finishes writing any output. It allows the user to continue working with the document as soon as all input is pushed into the filter.&lt;br /&gt;
* If no input is expected by the filter ({{field|Settings:Filters:Filter|Push input}} turned off), TED Notepad does not wait until the filter finishes reading any input. It allows the user to continue working with the document as soon as output is closed by the filter.&lt;br /&gt;
* If no output and no input is expected and the return code is ignored ({{field|Settings:Filters:Filter|Push input}} and {{field|Settings:Filters:Filter|Capture output}} turned off and {{field|Settings:Filters:Filter|Ignore return code}} turned on), TED Notepad allows the user to continue working with the document immediatelly, even while the filter continues running in the background. This is ideal of external viewers, which do not use input and output, and where waiting for the viewer is not needed.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|But wait until finished}}''' option allows to disregard the return code, push no input, read no output, yet still wait until the filter finishes, before TED Notepad allows the user to continue working with the document.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Exit when done}}''' option tells to invoke the {{feature|Exit}} right after the filter finishes and its results are processed, if any. Note: The {{feature|Exit}} might ask for saving the document before exiting.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Without saving}}''' option tells to invoke the {{feature|Exit without saving!}} instead of common {{feature|Exit}} after the filter finishes.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Filters_page&amp;diff=6046</id>
		<title>Filters page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Filters_page&amp;diff=6046"/>
		<updated>2025-05-24T20:05:56Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|dialog|Settings:Filters}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters|Filters}}''' page allows to manage, add, remove or edit {{feature|Text Filters}}. See {{feature|Text Filters}} for further details.&lt;br /&gt;
&lt;br /&gt;
The {{field|Settings:Filters|New}} button allows to add new entry into the list of {{feature|Text Filters}}, the {{field|Settings:Filters|Edit}} button allows to modify any entry within the list and the {{field|Settings:Filters|Delete}} button removes selected entry from the list. Use the {{field|Settings:Filters|Up}} and {{field|Settings:Filters|Down}} buttons to move individual entries within the list and thus within the {{menu|Text Filters}} menu.&lt;br /&gt;
&lt;br /&gt;
Note: The {{field|Settings:Filters|New}} and {{field|Settings:Filters|Edit}} buttons invoke the {{dialog|Settings:Filters:Filter}} definition dialog, which is described below. Note: See {{feature|Text Filters}} as well for further details about filters.&lt;br /&gt;
&lt;br /&gt;
Note: All changes to the list of {{feature|Text Filters}} must be confirmed by confirming the {{dialog|Settings}} dialog. If the {{dialog|Settings}} dialog is cancelled, any recent changes to the list of {{feature|Text Filters}} are discarded.&lt;br /&gt;
&lt;br /&gt;
===={{dialog|Settings:Filters:Filter}} dialog fields and options====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Name}}''' field is the name of the filter, as it appears in the {{menu|Text Filters}} menu roster.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Command}}''' field contains the command to be executed upon filter invocation. Variables in this command are replaced by actual values.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Description}}''' field contains description of the command shown upon filter invocation. It should contain filter documentation and other relevant information, available arguments and expected variables, etc.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Skip launch dialog}}''' option tells that the filter needs no user input upon invocation and should be launched directly.&lt;br /&gt;
&lt;br /&gt;
Note: If the command contains any variables, they are populated with empty strings.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Push input}}''' option tells to populate the input of the filter with text selected upon such invocation.&lt;br /&gt;
&lt;br /&gt;
Note: This is default behaviour for most text-processing filters. However, filters which process filenames rather than selections or receive the selection as an argument often do not read the input.&lt;br /&gt;
&lt;br /&gt;
Note: See {{field|Settings:Filters:Filter|Ignore return code}} option below as well.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Capture output}}''' option tells to retrieve the output of the filter and use it to replace the selection or display it as a message.&lt;br /&gt;
&lt;br /&gt;
Note: This is default behaviour for most text-processing filters. However, filters which process filenames rather than selections often do not produce any relevant output at all.&lt;br /&gt;
&lt;br /&gt;
Note: See {{field|Settings:Filters:Filter|Ignore return code}} option below as well.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Mix stdout/stderr}}''' option tells to mix standard output and error output of the filter together. By default, standard output is used to replace the selection and error output for displaying messages upon filter errors and failures. However, some filters may use standard and error output in a different fashion and the user may need to mix these two together into one stream.&lt;br /&gt;
&lt;br /&gt;
Note: The mixing is done directly on the system level, by using the same pipe for both output ends, thus the mixed output resembles the original chronological order. However, some programming languages (e.g. Java) might buffer the outputs separatelly before flushing to the system pipes, thus potentially re-ordering the text. Such problem has to be dealt with within such languages.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Display as message}}''' option tells to display the results as a message instead of replacing the current selection with it.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|UTF-8}}''' option tells to encode the selection in UTF-8 before pushing it into the filter and also decode the results before replacing the selection or displaying them in a message.&lt;br /&gt;
&lt;br /&gt;
Note: Both input and output has to be UTF-8, or neither. It is not possible to push UTF-8 and read ANSI for example.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Ignore return code}}''' option tells to disregard the return code of the filter and accept whatever results it produces as success.&lt;br /&gt;
* If no output is expected from the filter ({{field|Settings:Filters:Filter|Capture output}} turned off), TED Notepad does not wait until the filter finishes writing any output. It allows the user to continue working with the document as soon as all input is pushed into the filter.&lt;br /&gt;
* If no input is expected by the filter ({{field|Settings:Filters:Filter|Push input}} turned off), TED Notepad does not wait until the filter finishes reading any input. It allows the user to continue working with the document as soon as output is closed by the filter.&lt;br /&gt;
* If no output and no input is expected and return code is ignored ({{field|Settings:Filters:Filter|Push input}} and {{field|Settings:Filters:Filter|Capture output}} turned off and {{field|Settings:Filters:Filter|Ignore return code}} turned on), TED Notepad allows the user to continue working with the document immediatelly, even while the filter continues running in the background. This is ideal of external viewers, which do not use &lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|But wait until finished}}''' option allows to disregard the return code, push no input, read no output, yet still wait until the filter finishes, before TED Notepad allows the user to continue working with the document.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Exit when done}}''' option tells to invoke the {{feature|Exit}} right after the filter finishes and its results are processed, if any. Note: The {{feature|Exit}} might ask for saving the document before exiting.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Filters:Filter|Without saving}}''' option tells to invoke the {{feature|Exit without saving!}} instead of common {{feature|Exit}} after the filter finishes.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6045</id>
		<title>General page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6045"/>
		<updated>2024-03-17T20:24:23Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.1.0.2|dialog|Settings:General}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Application}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Exit by Esc key}}''' setting allows the {{hotkey|Esc}} and  {{hotkey|Shift+Esc}} hotkeys to exit the application. Note that open dialogs are closed by {{hotkey|Esc}} as well, and all dialogs are closed before the application itself is closed by {{hotkey|Esc}} hotkey. This includes the {{dialog|Search bar}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Ask upon such exit}}''' setting is available only if {{field|Settings:General|Exit by Esc key}} is turned on, and ensures that the user is asked about the closing before actually closing the application.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Full path in Caption}}''' setting displays also full document path (including drive letter and directory path) and file name (including file extension) in the main window title and on the Taskbar icon. If turned off, only displays a ''file title'', which usually does not include path and may also exclude file extension. Note: What components ''file title'' actually contains can be modified thru {{system|Windows Explorer Options}} dialog; e.g. by default, file extension is hidden on most Windows Installations, but can be turned on by advanced users.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Check for updates}}''' setting enables automated weekly checks for new versions of TED Notepad. See {{feature|AutoCheck for Updates}} for details.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Status}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No ASCII in Status Bar}}''' setting disables panel of {{feature|Status Bar}} where current character's code is displayed. See  {{feature|Status Bar}} for more details.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No save through Status Bar}}''' setting disables invoking the {{feature|Save}} command thru double-clicking on the respective panel of the {{feature|Status Bar}}. By default, double-clicking on panel with unsaved modifications indicator conveniently invokes {{feature|Save}} or&lt;br /&gt;
{{feature|Save As}} commands.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Words}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Basic word definition (alphanums only)}}''' setting disables full unicode character recognition when determining words, and uses a bit simpler {{defined|alphanum}} character class (letters, letters with diacritics and numbers) for {{defined|word}} definition.&lt;br /&gt;
&lt;br /&gt;
This {{defined|word}} definition is used when working with {{defined|words}}, e.g. in {{feature|Select Word}} or {{feature|Complete Word}}, but also in many tools.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Include underscores in words}}''' setting adds underscore character to the {{defined|word}} definition. Underscores (by default) are not part of {{defined|words}} and are treated as {{defined|word delimiters}}.&lt;br /&gt;
&lt;br /&gt;
Note: Other characters, those that are not included within {{defined|words}} are divided into two groups: {{defined|white-spaces}} and {{defined|word delimiters}}. All word-oriented features (e.g. {{feature|Select Word}}) usually treat all {{defined|white-spaces}} as one delimiting character. So, for example, {{feature|Select Word}} selects either one {{defined|word}} or all consecutive {{defined|white-spaces}} or a single {{defined|word delimiter}} otherwise.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Date/time}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Date/time glue}}''' setting allows to set a joint string between the Date and Time parts. See {{feature|Date/Time}} inserting commands.&lt;br /&gt;
&lt;br /&gt;
=====Additional date/time settings=====&lt;br /&gt;
&lt;br /&gt;
It is possible to override the user locale, but this has to be done by manually editting the {{feature|Config}}, as these overrides are not included in the {{feature|Settings}} dialog. Please do note that this is only recommended for advanced users with good technical skills.&lt;br /&gt;
&lt;br /&gt;
Find config section {{string|Setts}} in the {{feature|Config}}. Use {{string|LcTF}} config entry to override time format, use {{string|LcDLF}} config entry to override long date format, use {{string|LcDSF}} config entry to override short date format.&lt;br /&gt;
&lt;br /&gt;
{{example_start}}'''Example:''' INI file overridding the user date and time locale settings:&lt;br /&gt;
{{example_body}}&amp;lt;nowiki&amp;gt;[Setts]&lt;br /&gt;
LcTF=H:mm:ss&lt;br /&gt;
LcDLF=dddd, dd MM yyyy&lt;br /&gt;
LcDSF=yyyy-MM-dd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
{{example_end}}&lt;br /&gt;
&lt;br /&gt;
Note: Specify date and time formats separately, as shown in the above example.&lt;br /&gt;
&lt;br /&gt;
Note: Date and time formats are not currently validated by TED Notepad, and are simply passed directly to the GetDateFormat and GetTimeFormat system functions respectively.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|.LOG feature}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Add date first, then time}}''' setting tells, whether to use {{feature|Date/Time}} or {{feature|Time/Date}} upon creating new log with the {{feature|.LOG extension}}.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Recent Files}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Empty Recent Files menu}}''' setting button empties the list of the {{feature|Recent Files}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6044</id>
		<title>General page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6044"/>
		<updated>2024-03-17T20:23:49Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.1.0.2|dialog|Settings:General}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Application}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Exit by Esc key}}''' setting allows the {{hotkey|Esc}} and  {{hotkey|Shift+Esc}} hotkeys to exit the application. Note that open dialogs are closed by {{hotkey|Esc}} as well, and all dialogs are closed before the application itself is closed by {{hotkey|Esc}} hotkey. This includes the {{dialog|Search bar}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Ask upon such exit}}''' setting is available only if {{field|Settings:General|Exit by Esc key}} is turned on, and ensures that the user is asked about the closing before actually closing the application.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Full path in Caption}}''' setting displays also full document path (including drive letter and directory path) and file name (including file extension) in the main window title and on the Taskbar icon. If turned off, only displays a ''file title'', which usually does not include path and may also exclude file extension. Note: What components ''file title'' actually contains can be modified thru {{system|Windows Explorer Options}} dialog; e.g. by default, file extension is hidden on most Windows Installations, but can be turned on by advanced users.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Check for updates}}''' setting enables automated weekly checks for new versions of TED Notepad. See {{feature|AutoCheck for Updates}} for details.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Status}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No ASCII in Status Bar}}''' setting disables panel of {{feature|Status Bar}} where current character's code is displayed. See  {{feature|Status Bar}} for more details.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No save through Status Bar}}''' setting disables invoking the {{feature|Save}} command thru double-clicking on the respective panel of the {{feature|Status Bar}}. By default, double-clicking on panel with unsaved modifications indicator conveniently invokes {{feature|Save}} or&lt;br /&gt;
{{feature|Save As}} commands.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Words}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Basic word definition (alphanums only)}}''' setting disables full unicode character recognition when determining words, and uses a bit simpler {{defined|alphanum}} character class (letters, letters with diacritics and numbers) for {{defined|word}} definition.&lt;br /&gt;
&lt;br /&gt;
This {{defined|word}} definition is used when working with {{defined|words}}, e.g. in {{feature|Select Word}} or {{feature|Complete Word}}, but also in many tools.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Include underscores in words}}''' setting adds underscore character to the {{defined|word}} definition. Underscores (by default) are not part of {{defined|words}} and are treated as {{defined|word delimiters}}.&lt;br /&gt;
&lt;br /&gt;
Note: Other characters, those that are not included within {{defined|words}} are divided into two groups: {{defined|white-spaces}} and {{defined|word delimiters}}. All word-oriented features (e.g. {{feature|Select Word}}) usually treat all {{defined|white-spaces}} as one delimiting character. So, for example, {{feature|Select Word}} selects either one {{defined|word}} or all consecutive {{defined|white-spaces}} or a single {{defined|word delimiter}} otherwise.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Date/time}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Date/time glue}}''' setting allows to set a joint string between the Date and Time parts. See {{feature|Date/Time}} inserting commands.&lt;br /&gt;
&lt;br /&gt;
=====Additional date/time settings=====&lt;br /&gt;
&lt;br /&gt;
It is possible to override the user locale, but this has to be done by manually editting the {{feature|Config}}, as these overrides are not included in the {{feature|Settings}} dialog. Please do note that this is only recommended for advanced users with good technical skills.&lt;br /&gt;
&lt;br /&gt;
Find config section {{string|Setts}} in the {{feature|Config}}. Use {{string|LcTF}} config entry to override time format, use {{string|LcDLF}} config entry to override long date format, use {{string|LcDSF}} config entry to override short date format.&lt;br /&gt;
&lt;br /&gt;
{{example_start}}'''Example:''' INI file overridding the user date and time locale settings:&lt;br /&gt;
{{example_body}}&amp;lt;nowiki&amp;gt;[Setts]&lt;br /&gt;
LcTF=H:mm:ss&lt;br /&gt;
LcDLF=dddd, dd MM yyyy&lt;br /&gt;
LcDSF=yyyy-MM-dd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
{{example_end}}&lt;br /&gt;
&lt;br /&gt;
Note: Specify date and time formats separately, as shown in the above example.&lt;br /&gt;
&lt;br /&gt;
Note: Date and time formats are not currently validated by TED Notepad, and are simply passed directly to the GetDateFormat and GetTimeFormat functions respectively.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|.LOG feature}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Add date first, then time}}''' setting tells, whether to use {{feature|Date/Time}} or {{feature|Time/Date}} upon creating new log with the {{feature|.LOG extension}}.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Recent Files}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Empty Recent Files menu}}''' setting button empties the list of the {{feature|Recent Files}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6043</id>
		<title>General page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6043"/>
		<updated>2024-03-17T20:22:51Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.1.0.2|dialog|Settings:General}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Application}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Exit by Esc key}}''' setting allows the {{hotkey|Esc}} and  {{hotkey|Shift+Esc}} hotkeys to exit the application. Note that open dialogs are closed by {{hotkey|Esc}} as well, and all dialogs are closed before the application itself is closed by {{hotkey|Esc}} hotkey. This includes the {{dialog|Search bar}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Ask upon such exit}}''' setting is available only if {{field|Settings:General|Exit by Esc key}} is turned on, and ensures that the user is asked about the closing before actually closing the application.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Full path in Caption}}''' setting displays also full document path (including drive letter and directory path) and file name (including file extension) in the main window title and on the Taskbar icon. If turned off, only displays a ''file title'', which usually does not include path and may also exclude file extension. Note: What components ''file title'' actually contains can be modified thru {{system|Windows Explorer Options}} dialog; e.g. by default, file extension is hidden on most Windows Installations, but can be turned on by advanced users.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Check for updates}}''' setting enables automated weekly checks for new versions of TED Notepad. See {{feature|AutoCheck for Updates}} for details.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Status}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No ASCII in Status Bar}}''' setting disables panel of {{feature|Status Bar}} where current character's code is displayed. See  {{feature|Status Bar}} for more details.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No save through Status Bar}}''' setting disables invoking the {{feature|Save}} command thru double-clicking on the respective panel of the {{feature|Status Bar}}. By default, double-clicking on panel with unsaved modifications indicator conveniently invokes {{feature|Save}} or&lt;br /&gt;
{{feature|Save As}} commands.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Words}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Basic word definition (alphanums only)}}''' setting disables full unicode character recognition when determining words, and uses a bit simpler {{defined|alphanum}} character class (letters, letters with diacritics and numbers) for {{defined|word}} definition.&lt;br /&gt;
&lt;br /&gt;
This {{defined|word}} definition is used when working with {{defined|words}}, e.g. in {{feature|Select Word}} or {{feature|Complete Word}}, but also in many tools.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Include underscores in words}}''' setting adds underscore character to the {{defined|word}} definition. Underscores (by default) are not part of {{defined|words}} and are treated as {{defined|word delimiters}}.&lt;br /&gt;
&lt;br /&gt;
Note: Other characters, those that are not included within {{defined|words}} are divided into two groups: {{defined|white-spaces}} and {{defined|word delimiters}}. All word-oriented features (e.g. {{feature|Select Word}}) usually treat all {{defined|white-spaces}} as one delimiting character. So, for example, {{feature|Select Word}} selects either one {{defined|word}} or all consecutive {{defined|white-spaces}} or a single {{defined|word delimiter}} otherwise.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Date/time}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Date/time glue}}''' setting allows to set a joint string between the Date and Time parts. See {{feature|Date/Time}} inserting commands.&lt;br /&gt;
&lt;br /&gt;
=====Additional date/time settings=====&lt;br /&gt;
&lt;br /&gt;
It is possible to override the user locale, but this has to be done by manually editting the {{feature|Config}}, as these overrides are not included in the {{feature|Settings}} dialog. Please do note that this is only recommended for advanced users with good technical skills.&lt;br /&gt;
&lt;br /&gt;
Find config section {{string|Setts}} in the {{feature|Config}}. Use {{string|LcTF}} config entry to override time format, use {{string|LcDLF}} config entry to override long date format, use {{string|LcDSF}} config entry to override short date format.&lt;br /&gt;
&lt;br /&gt;
{{example_start}}'''Example:''' INI file overridding the user date and time locale settings:&lt;br /&gt;
{{example_body}}&amp;lt;nowiki&amp;gt;[Setts]&lt;br /&gt;
LcTF=H:mm:ss&lt;br /&gt;
LcDLF=dddd, dd MM yyyy&lt;br /&gt;
LcDSF=yyyy-MM-dd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
{{example_end}}&lt;br /&gt;
&lt;br /&gt;
Note: Specify date and time formats separately.&lt;br /&gt;
&lt;br /&gt;
Note: Date and time formats are not currently validated by TED Notepad, and are simply passed directly to the GetDateFormat and GetTimeFormat functions respectively.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|.LOG feature}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Add date first, then time}}''' setting tells, whether to use {{feature|Date/Time}} or {{feature|Time/Date}} upon creating new log with the {{feature|.LOG extension}}.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Recent Files}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Empty Recent Files menu}}''' setting button empties the list of the {{feature|Recent Files}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Long_Date&amp;diff=6042</id>
		<title>Long Date</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Long_Date&amp;diff=6042"/>
		<updated>2024-03-17T20:21:47Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Long Date (Ctrl+Shift+F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system date using the long date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Date&amp;diff=6041</id>
		<title>Date</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Date&amp;diff=6041"/>
		<updated>2024-03-17T20:21:44Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Date (Ctrl+F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system date using the short date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Long_Date/Time&amp;diff=6040</id>
		<title>Long Date/Time</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Long_Date/Time&amp;diff=6040"/>
		<updated>2024-03-17T20:21:41Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Long Date/Time (Alt+Shift+F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system date and time using the long date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Date/Time&amp;diff=6039</id>
		<title>Date/Time</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Date/Time&amp;diff=6039"/>
		<updated>2024-03-17T20:21:38Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Date/Time (Alt+F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system date and time using the short date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Time/Long_Date&amp;diff=6038</id>
		<title>Time/Long Date</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Time/Long_Date&amp;diff=6038"/>
		<updated>2024-03-17T20:21:36Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Time/Long Date (Shift+F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system time and date using the long date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Time/Date&amp;diff=6037</id>
		<title>Time/Date</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Time/Date&amp;diff=6037"/>
		<updated>2024-03-17T20:21:22Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Edit menu|Insert &amp;gt; Time/Date (F5)}}&lt;br /&gt;
&lt;br /&gt;
Inserts current system time and date using the short date format specified in the Local Settings (e.g. Control Panel of My Computer).&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Date}}, {{feature|Date/Time}}, {{feature|Time/Date}}, {{feature|Long Date}}, {{feature|Long Date/Time}} and {{feature|Time/Long Date}}.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See {{field|Settings:General|Date/time}} settings on the [[General page]] of the {{feature|Settings}} dialog.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6036</id>
		<title>General page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=General_page&amp;diff=6036"/>
		<updated>2024-03-17T20:16:21Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.1.0.2|dialog|Settings:General}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Application}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Exit by Esc key}}''' setting allows the {{hotkey|Esc}} and  {{hotkey|Shift+Esc}} hotkeys to exit the application. Note that open dialogs are closed by {{hotkey|Esc}} as well, and all dialogs are closed before the application itself is closed by {{hotkey|Esc}} hotkey. This includes the {{dialog|Search bar}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Ask upon such exit}}''' setting is available only if {{field|Settings:General|Exit by Esc key}} is turned on, and ensures that the user is asked about the closing before actually closing the application.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Full path in Caption}}''' setting displays also full document path (including drive letter and directory path) and file name (including file extension) in the main window title and on the Taskbar icon. If turned off, only displays a ''file title'', which usually does not include path and may also exclude file extension. Note: What components ''file title'' actually contains can be modified thru {{system|Windows Explorer Options}} dialog; e.g. by default, file extension is hidden on most Windows Installations, but can be turned on by advanced users.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Check for updates}}''' setting enables automated weekly checks for new versions of TED Notepad. See {{feature|AutoCheck for Updates}} for details.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Status}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No ASCII in Status Bar}}''' setting disables panel of {{feature|Status Bar}} where current character's code is displayed. See  {{feature|Status Bar}} for more details.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|No save through Status Bar}}''' setting disables invoking the {{feature|Save}} command thru double-clicking on the respective panel of the {{feature|Status Bar}}. By default, double-clicking on panel with unsaved modifications indicator conveniently invokes {{feature|Save}} or&lt;br /&gt;
{{feature|Save As}} commands.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Words}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Basic word definition (alphanums only)}}''' setting disables full unicode character recognition when determining words, and uses a bit simpler {{defined|alphanum}} character class (letters, letters with diacritics and numbers) for {{defined|word}} definition.&lt;br /&gt;
&lt;br /&gt;
This {{defined|word}} definition is used when working with {{defined|words}}, e.g. in {{feature|Select Word}} or {{feature|Complete Word}}, but also in many tools.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Include underscores in words}}''' setting adds underscore character to the {{defined|word}} definition. Underscores (by default) are not part of {{defined|words}} and are treated as {{defined|word delimiters}}.&lt;br /&gt;
&lt;br /&gt;
Note: Other characters, those that are not included within {{defined|words}} are divided into two groups: {{defined|white-spaces}} and {{defined|word delimiters}}. All word-oriented features (e.g. {{feature|Select Word}}) usually treat all {{defined|white-spaces}} as one delimiting character. So, for example, {{feature|Select Word}} selects either one {{defined|word}} or all consecutive {{defined|white-spaces}} or a single {{defined|word delimiter}} otherwise.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Date/time}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Date/time glue}}''' setting allows to set a joint string between the Date and Time parts. See {{feature|Date/Time}} inserting commands.&lt;br /&gt;
&lt;br /&gt;
=====Additional date/time settings=====&lt;br /&gt;
&lt;br /&gt;
It is possible to override the user locale, but this has to be done by manually editting the {{feature|Config}}, as these overrides are not included in the {{feature|Settings}} dialog. Please do note that this is only recommended for advanced users with some technical or coding skills.&lt;br /&gt;
&lt;br /&gt;
Find config section {{string|Setts}} in the {{feature|Config}}. Use {{string|LcTF}} config entry to override time format, use {{string|LcDLF}} config entry to override long date format, use {{string|LcDSF}} config entry to override short date format.&lt;br /&gt;
&lt;br /&gt;
{{example_start}}'''Example:''' INI file overridding the user date and time locale settings:&lt;br /&gt;
{{example_body}}&amp;lt;nowiki&amp;gt;[Setts]&lt;br /&gt;
LcTF=H:mm:ss&lt;br /&gt;
LcDLF=dddd, dd MM yyyy&lt;br /&gt;
LcDSF=yyyy-MM-dd&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
{{example_end}}&lt;br /&gt;
&lt;br /&gt;
Note: Specify date and time formats separately.&lt;br /&gt;
&lt;br /&gt;
Note: Date and time formats are not currently validated by TED Notepad, and are simply passed directly to the GetDateFormat and GetTimeFormat functions respectively.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|.LOG feature}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Add date first, then time}}''' setting tells, whether to use {{feature|Date/Time}} or {{feature|Time/Date}} upon creating new log with the {{feature|.LOG extension}}.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:General|Recent Files}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:General|Empty Recent Files menu}}''' setting button empties the list of the {{feature|Recent Files}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Appearance_page&amp;diff=6035</id>
		<title>Appearance page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Appearance_page&amp;diff=6035"/>
		<updated>2021-12-14T21:10:10Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.0.8|dialog|Settings:Appearance}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Appearance|Colors}}====&lt;br /&gt;
&lt;br /&gt;
====={{field|Settings:Appearance|Colors: Common text}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Common text: Text}}''' button sets foreground display color for document text.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Common text: Back}}''' button sets background display color for document and document text.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Common text: Special}}''' button sets foreground display color for extra text information and marks, including {{feature|Visible Tabs}}, {{feature|Visible Spaces}}, {{feature|Visible Newlines}} and {{feature|Line Lengths}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Common text: Colorized}}''' button sets foreground display color for colorized document text.&lt;br /&gt;
See {{feature|Colorize Text}} in the {{menu|Options menu}}, which must also be enabled.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Common text: Url}}''' button sets foreground display color for detected URLs in the document.&lt;br /&gt;
See {{feature|Detect URLs}} in the {{menu|Options menu}}, which must also be enabled.&lt;br /&gt;
&lt;br /&gt;
====={{field|Settings:Appearance|Colors: Current line}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Current line: Back}}''' button sets background display color for the currently selected line(s).&lt;br /&gt;
See {{field|Settings:Edit|Highlight current line}} in the [[Edit page]] of the {{dialog|Settings}} dialog, which must also be enabled.&lt;br /&gt;
 &lt;br /&gt;
====={{field|Settings:Appearance|Colors: Selection}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Selection: Text}}''' button sets foreground display color for selected document text.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Selection: Back}}''' button sets background display color for selected document text.&lt;br /&gt;
&lt;br /&gt;
====={{field|Settings:Appearance|Colors: Line numbers}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Line numbers: Text}}''' button sets foreground display color for {{feature|Line Numbers}} within the left gutter with {{feature|Line Numbers}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Line numbers: Back}}''' button sets background display color for the left gutter with {{feature|Line Numbers}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Line numbers: Border}}''' button sets display color for border of the left gutter with {{feature|Line Numbers}}.&lt;br /&gt;
&lt;br /&gt;
====={{field|Settings:Appearance|Colors: Wrap margin}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Colors: Wrap margin: Margin}}''' button sets display color for the {{feature|Wrap Margin}}.&lt;br /&gt;
&lt;br /&gt;
====={{field|Settings:Appearance|Colors: Random}}=====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Random color scheme}}''' button creates new random color scheme, which includes colors from both {{field|Settings:Appearance|Colors: Common text}} and {{field|Settings:Appearance|Colors: Selection}}, and also colors from {{field|Settings:Appearance|Colors: Line numbers}}. Note that the created color scheme is completely random and is not guaranteed to be reasonable or usable. However, some resulting schemes tend to give good starting points in creating innovative yet cozy working schemes.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Appearance|Fonts}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Fonts: Primary}}''' button sets the {{feature|Primary Font}} for displaying text of the document in {{feature|Dual font support}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Fonts: Secondary}}''' button sets the {{feature|Secondary Font}} for displaying text of the document in {{feature|Dual font support}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Appearance|Fonts: Print}}''' button sets printing font used in {{feature|Print}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Line_Lengths&amp;diff=6034</id>
		<title>Line Lengths</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Line_Lengths&amp;diff=6034"/>
		<updated>2021-12-14T21:09:18Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Options menu|Line Lengths}}&lt;br /&gt;
&lt;br /&gt;
If turned on, each visible line in the document window, is capped with a length of that line. The lengths are represented in characters, and depend on current {{feature|word wrapping}}. This is different from what {{feature|Status Bar}} displays as line length, since {{feature|Status Bar}} calculates line lengths regardless of current {{feature|word wrapping}}. The foundation of {{feature|Line Lengths}} is to provide an immediate visual clue of length for any given visual line as currently displayed, while {{feature|Status Bar}} is to provide information about the document itself, ignoring any temporary wrapping.&lt;br /&gt;
&lt;br /&gt;
Note: The text of the document is not modified by this feature in any way.&lt;br /&gt;
&lt;br /&gt;
To change the color of the line lengths, see {{field|Settings:Appearance|Colors: Common text: Special}} in the [[Appearance page]] of the {{dialog|Settings}} dialog.&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Visible Newlines}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Newlines&amp;diff=6033</id>
		<title>Visible Newlines</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Newlines&amp;diff=6033"/>
		<updated>2021-12-14T21:09:01Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.2.1.0|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Options menu|Visible Newlines}}&lt;br /&gt;
&lt;br /&gt;
If turned on, each line in the document window, which is terminated by an actual {{defined|newline}}, is visually capped with a special newline symbol.&lt;br /&gt;
The shape of the capping symbol can be used to tell the actual type of newline present at each location.&lt;br /&gt;
&lt;br /&gt;
Note: The text of the document is not modified by this feature in any way.&lt;br /&gt;
&lt;br /&gt;
To change the color of the Newlines, see {{field|Settings:Appearance|Colors: Common text: Special}} in the [[Appearance page]] of the {{dialog|Settings}} dialog.&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Line Lengths}}, {{feature|Visible Spaces}} and {{feature|Visible Tabs}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Spaces&amp;diff=6032</id>
		<title>Visible Spaces</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Spaces&amp;diff=6032"/>
		<updated>2021-12-14T21:08:49Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.0.8|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Options menu|Visible Spaces}}&lt;br /&gt;
&lt;br /&gt;
If turned on, each Space character in the document window is visually enhanced.&lt;br /&gt;
&lt;br /&gt;
Note: {{defined|No-break spaces}} are draw slightly differently to spaces that allow word-wrapping.&lt;br /&gt;
&lt;br /&gt;
Note: The text of the document is not modified by this feature in any way.&lt;br /&gt;
&lt;br /&gt;
To change the color of the Spaces, see {{field|Settings:Appearance|Colors: Common text: Special}} in the [[Appearance page]] of the {{dialog|Settings}} dialog.&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Visible Newlines}}, {{feature|Visible Tabs}} and {{feature|Colorize Text}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Tabs&amp;diff=6031</id>
		<title>Visible Tabs</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Visible_Tabs&amp;diff=6031"/>
		<updated>2021-12-14T21:08:29Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.2.1.0|feature}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
{{#headline:Options menu|Visible Tabs}}&lt;br /&gt;
&lt;br /&gt;
If turned on, each Tab character in the document window is visually enhanced.&lt;br /&gt;
&lt;br /&gt;
Note: The text of the document is not modified by this feature in any way.&lt;br /&gt;
&lt;br /&gt;
To change the color of the Tabs, see {{field|Settings:Appearance|Colors: Common text: Special}} in the [[Appearance page]] of the {{dialog|Settings}} dialog.&lt;br /&gt;
&lt;br /&gt;
See also {{feature|Visible Newlines}}, {{feature|Visible Spaces}} and {{feature|Colorize Text}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6030</id>
		<title>Installation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6030"/>
		<updated>2021-12-13T23:57:55Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are several ways, how to get TED Notepad ready for use:&lt;br /&gt;
&lt;br /&gt;
* First, you may use an Installer. It will install TED Notepad onto a computer, create some shortcuts in the start menu and optionally add some additional Filters.&lt;br /&gt;
&lt;br /&gt;
* Second, you may install TED Notepad from a ZIP package all by yourself, without use and help of any wizards and/or automated dialogs. This is usually the most preferred way if installing as a portable application.&lt;br /&gt;
&lt;br /&gt;
* Third, you may just run TED Notepad with no installation procedures at all. Simply unpack the files from the downloaded ZIP package and run.&lt;br /&gt;
&lt;br /&gt;
=== Installation using the Installer ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to install TED Notepad using an Installer:&lt;br /&gt;
&lt;br /&gt;
# Download the Installer file of your choice and run it.&lt;br /&gt;
#* Please, be careful to choose an appropriate installation file according to your system. Choose between Windows 95/98/Me and Windows NT/2000/XP/7/8/10 versions. Versions for Windows NT/2000/XP/7/8/10 will not run on Windows 95/98/Me systems. On the other hand, versions for Windows 95/98/Me are unable to fully support all Unicode characters, although they do need less memory to load files, especially if loading huge files.&lt;br /&gt;
# Follow steps displayed by the Installer.&lt;br /&gt;
#* '''Common text editor''' - By default, TED notepad is installed as a regular standalone text editor. This will install TED Notepad into a specified directory, including the manual and all other files. You may choose to setup some basic Filters and External viewers as well. Advanced users may want to add a [[Portable INI file]] to the installation after the wizard finishes.&lt;br /&gt;
#* '''Notepad replacement''' - '''For advanced users only!''' - This installation type will try to install TED Notepad as your system's default Notepad application. This choice is only recommended for advanced Windows users who really want their default notepad replaced, because the system must be manually prepared for such replacing notepad. Only once the system has been prepared, this installation type works. Without preparation, this option simply gets ignored by the system. If you are a power user, see the homepage for ideas on how to replace the notepad on your specific system.&lt;br /&gt;
&lt;br /&gt;
If you run into a problem during the installation, please also review the online manual and FAQ for any further changes and new ideas. If you still find no answer to your problem, feel free to contact me directly. Please, try to describe your problem as clearly as possible. Please note, that this is a manual of TED Notepad version {{appver}}. If you are trying to install an older or newer version and have found no answer here, please refer to an appropriate manual version. You can find all reliable versions at the official homepage.&lt;br /&gt;
&lt;br /&gt;
=== ZIP packages ===&lt;br /&gt;
&lt;br /&gt;
These zip packages, downloadable on the same page as the Installers, contain all the files you need for a hand-held installation and/or for a direct use with no installation at all.&lt;br /&gt;
&lt;br /&gt;
To run TED Notepad without any installation, just unzip the content of a package to a directory of your own choice and run the {{system|TedNPad.exe}}. Keep the documentation file {{system|TedNPad.htm}} in the same directory as the executable application. Otherwise the manual will not be accessible from the application.&lt;br /&gt;
&lt;br /&gt;
To install TED Notepad, unzip the content of a chosen ZIP package into a desired directory. Then, it may be worthwhile to add the chosen directory to the {{system|PATH}} environment variable.&lt;br /&gt;
&lt;br /&gt;
=== Windows 95/98/Me notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure, you have downloaded a correct version, designed for Windows 95/98/Me systems. These older versions of windows may be unable to work with applications designed directly for Windows NT/2000/XP/7/8/10 systems.&lt;br /&gt;
&lt;br /&gt;
=== Windows NT/2000/XP/7/8/10 notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure to have Administrator privileges if installing TED Notepad into the Program Files or other system directory. Without Administrator rights, you should still be able to run the application directly without installation.&lt;br /&gt;
&lt;br /&gt;
=== How to modify file associations? ===&lt;br /&gt;
&lt;br /&gt;
In order to modify file association, please find a file with an extension that you want to assign TED Notepad to, for example a {{string|.txt}} file. It can be any file with such extension.&lt;br /&gt;
&lt;br /&gt;
To modify the associations, right-click on the file and choose {{system|Open with...}} and then {{system|Choose program...}} from the menu. A list of applications should appear. Select TED Notepad from the list. If TED Notepad is not listed there, click on {{system|Other...}} button to add TED Notepad to the list manually. Finally, choose {{system|Always use this program...}} and click the Ok button. The System should renew the file associations automatically.&lt;br /&gt;
&lt;br /&gt;
Another method to modify the file association is to open Windows Explorer and click on the {{system|Folder Options}} menu item, located within {{system|View}} or {{system|Tools}} menu. A dialog opens with a page named {{system|File types}} where the file associations can be managed.&lt;br /&gt;
&lt;br /&gt;
=== How to replace the default notepad? ===&lt;br /&gt;
&lt;br /&gt;
Only recommended for advanced users.&lt;br /&gt;
Please, see the homepage for ideas on how to replace notepad on your specific system. The techniques change with time and differ from system to system.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6029</id>
		<title>Installation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6029"/>
		<updated>2021-12-13T23:53:35Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are several ways, how to get TED Notepad ready for use:&lt;br /&gt;
&lt;br /&gt;
* First, you may use an Installer. It will install TED Notepad onto a computer, create some shortcuts in the start menu and optionally add some additional Filters.&lt;br /&gt;
&lt;br /&gt;
* Second, you may install TED Notepad from a ZIP package all by yourself, without use and help of any wizards and/or automated dialogs. This is usually the most preferred way if installing as a portable application.&lt;br /&gt;
&lt;br /&gt;
* Third, you may just run TED Notepad with no installation procedures at all. Simply unpack the files from the downloaded ZIP package and run.&lt;br /&gt;
&lt;br /&gt;
=== Installation using the Installer ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to install TED Notepad using an Installer:&lt;br /&gt;
&lt;br /&gt;
# Download the Installer file of your choice and run it.&lt;br /&gt;
#* Please, be careful to choose an appropriate installation file according to your system. Choose between Windows 95/98/Me and Windows NT/2000/XP versions. Versions for Windows NT/2000/XP/7/8 will not run on Windows 95/98/Me systems. On the other hand, versions for Windows Windows 95/98/Me are unable to fully support all Unicode characters, although they do need less memory to load files, especially if loading huge files.&lt;br /&gt;
# Follow steps displayed by the Installer.&lt;br /&gt;
#* '''Common text editor''' - By default, TED notepad is installed as a regular standalone text editor. This will install TED Notepad into a specified directory, including the manual and all other files. You may choose to setup some basic Filters and External viewers as well. Advanced users may want to add a [[Portable INI file]] to the installation after the wizard finishes.&lt;br /&gt;
#* '''Notepad replacement''' - '''For advanced users only!''' - This installation type will try to install TED Notepad as your system's default Notepad application. This choice is only recommended for advanced Windows users who really want their default notepad replaced, because the system must be manually prepared for such replacing notepad. Only once the system has been prepared, this installation type works. Without preparation, this option simply gets ignored by the system. If you are a power user, see the homepage for ideas on how to replace the notepad on your specific system.&lt;br /&gt;
&lt;br /&gt;
If you run into a problem during the installation, please also review the online manual and FAQ for any further changes and new ideas. If you still find no answer to your problem, feel free to contact me directly. Please, try to describe your problem as clearly as possible. Please note, that this is a manual of TED Notepad version {{appver}}. If you are trying to install an older or newer version and have found no answer here, please refer to an appropriate manual version. You can find all reliable versions at the official homepage.&lt;br /&gt;
&lt;br /&gt;
=== ZIP packages ===&lt;br /&gt;
&lt;br /&gt;
These zip packages, downloadable on the same page as the Installers, contain all the files you need for a hand-held installation and/or for a direct use with no installation at all.&lt;br /&gt;
&lt;br /&gt;
To run TED Notepad without any installation, just unzip the content of a package to a directory of your own choice and run the {{system|TedNPad.exe}}. Keep the documentation file {{system|TedNPad.htm}} in the same directory as the executable application. Otherwise the manual will not be accessible from the application.&lt;br /&gt;
&lt;br /&gt;
To install TED Notepad, unzip the content of a chosen ZIP package into a desired directory. Then, it may be worthwhile to add the chosen directory to the {{system|PATH}} environment variable.&lt;br /&gt;
&lt;br /&gt;
=== Windows 95/98/Me notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure, you have downloaded a correct version, designed for Windows 95/98/Me systems. These older versions of windows may be unable to work with applications designed directly for Windows NT/2000/XP/7/8 systems.&lt;br /&gt;
&lt;br /&gt;
=== Windows NT/2000/XP/7/8/10 notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure to have Administrator privileges if installing TED Notepad into the Program Files or other system directory. Without Administrator rights, you should still be able to run the application directly without installation.&lt;br /&gt;
&lt;br /&gt;
=== How to modify file associations? ===&lt;br /&gt;
&lt;br /&gt;
In order to modify file association, please find a file with an extension that you want to assign TED Notepad to, for example a {{string|.txt}} file. It can be any file with such extension.&lt;br /&gt;
&lt;br /&gt;
To modify the associations, right-click on the file and choose {{system|Open with...}} and then {{system|Choose program...}} from the menu. A list of applications should appear. Select TED Notepad from the list. If TED Notepad is not listed there, click on {{system|Other...}} button to add TED Notepad to the list manually. Finally, choose {{system|Always use this program...}} and click the Ok button. The System should renew the file associations automatically.&lt;br /&gt;
&lt;br /&gt;
Another method to modify the file association is to open Windows Explorer and click on the {{system|Folder Options}} menu item, located within {{system|View}} or {{system|Tools}} menu. A dialog opens with a page named {{system|File types}} where the file associations can be managed.&lt;br /&gt;
&lt;br /&gt;
=== How to replace the default notepad? ===&lt;br /&gt;
&lt;br /&gt;
Only recommended for advanced users.&lt;br /&gt;
Please, see the homepage for ideas on how to replace notepad on your specific system. The techniques change with time and differ from system to system.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6028</id>
		<title>Installation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Installation&amp;diff=6028"/>
		<updated>2021-12-13T23:38:03Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are several ways, how to get TED Notepad ready for use:&lt;br /&gt;
&lt;br /&gt;
* First, you may use an Installer. It will install TED Notepad onto a computer, create some shortcuts in the start menu and optionally add some additional Filters.&lt;br /&gt;
&lt;br /&gt;
* Second, you may install TED Notepad from a ZIP package all by yourself, without use and help of any wizards and/or automated dialogs. This is usually the most preferred way if installing as a portable application.&lt;br /&gt;
&lt;br /&gt;
* Third, you may just run TED Notepad with no installation procedures at all. Simply unpack the files from the downloaded ZIP package and run.&lt;br /&gt;
&lt;br /&gt;
=== Installation using the Installer ===&lt;br /&gt;
&lt;br /&gt;
Follow these steps to install TED Notepad using an Installer:&lt;br /&gt;
&lt;br /&gt;
# Download the Installer file of your choice and run it.&lt;br /&gt;
#* Please, be careful to choose an appropriate installation file according to your system. Choose between Windows 95/98/Me and Windows NT/2000/XP versions. Versions for Windows NT/2000/XP/7/8 will not run on Windows 95/98/Me systems. On the other hand, versions for Windows Windows 95/98/Me are unable to fully support all Unicode characters, although they do need less memory to load files, especially if loading huge files.&lt;br /&gt;
# Follow steps displayed by the Installer.&lt;br /&gt;
#* '''Common text editor''' - By default, TED notepad is installed as a regular standalone text editor. This will install TED Notepad into a specified directory, including the manual and all other files. You may choose to setup some basic Filters and External viewers as well. Advanced users may want to add a [[Portable INI file]] to the installation after the wizard finishes.&lt;br /&gt;
#* '''Notepad replacement''' - '''For advanced users only!''' - This installation type will try to install TED Notepad as your system's default Notepad application. This choice is only recommended for advanced Windows users who really want their default notepad replaced, because the system must be manually prepared for such replacing notepad. Only once the system has been prepared, this installation type works. Without preparation, this option simply gets ignored by the system. If you are a power user, see the homepage for ideas on how to replace the notepad on your specific system.&lt;br /&gt;
&lt;br /&gt;
If you run into a problem during the installation, please also review the online manual and FAQ for any further changes and new ideas. If you still find no answer to your problem, feel free to contact me directly. Please, try to describe your problem as clearly as possible. Please note, that this is a manual of TED Notepad version {{appver}}. If you are trying to install an older or newer version and have found no answer here, please refer to an appropriate manual version. You can find all reliable versions at the official homepage.&lt;br /&gt;
&lt;br /&gt;
=== ZIP packages ===&lt;br /&gt;
&lt;br /&gt;
These zip packages, downloadable on the same page as the Installers, contain all the files you need for a hand-held installation and/or for a direct use with no installation at all.&lt;br /&gt;
&lt;br /&gt;
To run TED Notepad without any installation, just unzip the content of a package to a directory of your own choice and run the {{system|TedNPad.exe}}. Keep the documentation file {{system|TedNPad.htm}} in the same directory as the executable application. Otherwise the manual will not be accessible from the application.&lt;br /&gt;
&lt;br /&gt;
To install TED Notpead, unzip the content of a chosen ZIP package into a desired directory. Then, it may be worthwile to add the chosen directory to the {{system|PATH}} enviroment variable.&lt;br /&gt;
&lt;br /&gt;
=== Windows 95/98/Me notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure, you have downloaded a correct version, designed for Windows 95/98/Me systems. These older versions of windows may be unable to work with applications designed directly for Windows NT/2000/XP/7/8 systems.&lt;br /&gt;
&lt;br /&gt;
=== Windows NT/2000/XP/7/8/10 notes ===&lt;br /&gt;
&lt;br /&gt;
Please, be sure to have Administrator privileges if installing TED Notepad into the Program Files or other system directory. Without Administrator rights, you should still be able to run the application directly without installation.&lt;br /&gt;
&lt;br /&gt;
=== How to modify file associations? ===&lt;br /&gt;
&lt;br /&gt;
In order to modify file association, please find a file with an extension that you want to assign TED Notepad to, for example a {{string|.txt}} file. It can be any file with such extension.&lt;br /&gt;
&lt;br /&gt;
To modify the associations, right-click on the file and choose {{system|Open with...}} and then {{system|Choose program...}} from the menu. A list of applications should appear. Select TED Notepad from the list. If TED Notepad is not listed there, click on {{system|Other...}} button to add TED Notepad to the list manually. Finally, choose {{system|Always use this program...}} and click the Ok button. The System should renew the file associations automatically.&lt;br /&gt;
&lt;br /&gt;
Another method to modify the file association is to open Windows Explorer and click on the {{system|Folder Options}} menu item, located within {{system|View}} or {{system|Tools}} menu. A dialog opens with a page named {{system|File types}} where the file associations can be managed.&lt;br /&gt;
&lt;br /&gt;
=== How to replace the default notepad? ===&lt;br /&gt;
&lt;br /&gt;
Only recommended for advanced users.&lt;br /&gt;
Please, see the homepage for ideas on how to replace notepad on your specific system. The techniques change with time and differ from system to system.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Uninstallation&amp;diff=6027</id>
		<title>Uninstallation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Uninstallation&amp;diff=6027"/>
		<updated>2021-12-13T22:56:45Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Redirected page to UnInstallation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[UnInstallation]]&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=UnInstallation&amp;diff=6026</id>
		<title>UnInstallation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=UnInstallation&amp;diff=6026"/>
		<updated>2021-12-13T22:55:52Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Removed redirect to Uninstallation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Uninstallation via the Installer ===&lt;br /&gt;
&lt;br /&gt;
If you installed TED Notepad using the installer, you will find {{system|Uninstall}} under {{system|TED Notepad}} in the {{system|Start menu}}. Click on {{system|Uninstall}} and follow the wizzard dialog that removes TED Notepad completely from your system.&lt;br /&gt;
&lt;br /&gt;
If the {{system|Uninstall}} shortcut is not found under {{system|TED Notepad}} in the {{system|Start menu}} (this is a known issue of the NSIS installer under some systems), use the classic {{system|Add or remove programs}} system dialog to launch the uninstallation. Follow the wizzard dialog that removes TED Notepad completely from your system.&lt;br /&gt;
&lt;br /&gt;
{{tip}} To find the {{system|Add or remove programs}} system dialog quickly, simply search for {{system|remove programs}} using your system search.&lt;br /&gt;
&lt;br /&gt;
Important: Close any open TED Notepad windows before uninstalling. If TED Notepad is kept running during the uninstallation, it will only be removed after computer restart.&lt;br /&gt;
&lt;br /&gt;
=== Uninstallation of portable versions ===&lt;br /&gt;
&lt;br /&gt;
If you downloaded one of the portable ZIP packages, you had the freedom to put TED Notepad at your desired portable location. Delete TED Notepad from such location to remove it, including the executable ({{system|TedNPad.exe}}), manual ({{system|TedNPad.htm}}) and config ({{system|TedNPad.ini}}).&lt;br /&gt;
&lt;br /&gt;
Note: Prior to version 6.3, external command launcher ({{system|launch.exe}}) was also included in the portable ZIP packages. Since version 6.3, this is no longer included as it has been outdated by enhancements to the native Command Prompt. See [[Text Filters]] for more info on using Command Prompt instead of {{system|launch.exe}}.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=UnInstallation&amp;diff=6025</id>
		<title>UnInstallation</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=UnInstallation&amp;diff=6025"/>
		<updated>2021-12-13T22:55:23Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Jsimlo moved page UnInstallation to Uninstallation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Uninstallation]]&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6019</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6019"/>
		<updated>2021-12-13T21:01:30Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* start&lt;br /&gt;
** TED Notepad Manual|Table of Contents&lt;br /&gt;
&lt;br /&gt;
* introduction&lt;br /&gt;
** Introduction|Introduction&lt;br /&gt;
** Agreement|Agreement&lt;br /&gt;
** Installation|Installation&lt;br /&gt;
** UnInstallation|UnInstallation&lt;br /&gt;
** ChangeLog|ChangeLog&lt;br /&gt;
&lt;br /&gt;
* documentation&lt;br /&gt;
** Basic commands reference|Basic commands&lt;br /&gt;
** Tools reference|Tools reference&lt;br /&gt;
** Settings dialog|Settings dialog&lt;br /&gt;
** Saving Config|Saving Config&lt;br /&gt;
** Command line parameters|Command line&lt;br /&gt;
** Hotkeys|Hotkeys&lt;br /&gt;
** Appendix|Appendix&lt;br /&gt;
&lt;br /&gt;
* navigation&lt;br /&gt;
** http://jsimlo.sk/notepad/|TED Notepad homepage&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
&lt;br /&gt;
* community&lt;br /&gt;
** Help:Templates|Help: Templates&lt;br /&gt;
&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
&lt;br /&gt;
* administration&lt;br /&gt;
** Special:Recentchanges|Recent changes&lt;br /&gt;
** Special:BrokenRedirects|Broken redirects&lt;br /&gt;
** Special:WantedPages|Most wanted pages&lt;br /&gt;
** Special:UncategorizedPages|Uncategorized pages&lt;br /&gt;
** Special:WantedCategories|Wanted categories&lt;br /&gt;
** Special:UnusedCategories|Unused categories&lt;br /&gt;
** Special:Categories|Categories&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Table_of_Contents&amp;diff=6018</id>
		<title>Table of Contents</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Table_of_Contents&amp;diff=6018"/>
		<updated>2021-12-13T21:00:02Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17}}&amp;lt;!-- If you modify the base structure of this document, also see [[All in One]]. --&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
*'''{{Table of Contents/Link|Introduction}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|Agreement}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|Installation}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|UnInstallation}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|ChangeLog}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|Basic commands reference}}'''&lt;br /&gt;
**{{Table of Contents/Link|File menu}}&lt;br /&gt;
***{{Table of Contents/Link|Drag &amp;amp; Drop files}}&lt;br /&gt;
***{{Table of Contents/Link|Recovering auto-save files}}&lt;br /&gt;
***{{Table of Contents/Link|.LOG extension}}&lt;br /&gt;
**{{Table of Contents/Link|Edit menu}}&lt;br /&gt;
***{{Table of Contents/Link|Using mouse}}&lt;br /&gt;
***{{Table of Contents/Link|View scrolling}}&lt;br /&gt;
**{{Table of Contents/Link|Search menu}}&lt;br /&gt;
***{{Table of Contents/Link|Regular expressions}}&lt;br /&gt;
**{{Table of Contents/Link|Favourites}}&lt;br /&gt;
**{{Table of Contents/Link|Clips menu}}&lt;br /&gt;
**{{Table of Contents/Link|Options menu}}&lt;br /&gt;
**{{Table of Contents/Link|Help menu}}&lt;br /&gt;
*'''{{Table of Contents/Link|Tools reference}}'''&lt;br /&gt;
**{{Table of Contents/Link|Case tools}}&lt;br /&gt;
**{{Table of Contents/Link|Lines tools}}&lt;br /&gt;
**{{Table of Contents/Link|Text tools}}&lt;br /&gt;
**{{Table of Contents/Link|Reverse tools}}&lt;br /&gt;
**{{Table of Contents/Link|Sort tools}}&lt;br /&gt;
**{{Table of Contents/Link|Wrap tools}}&lt;br /&gt;
**{{Table of Contents/Link|Text Filters}}&lt;br /&gt;
*'''{{Table of Contents/Link|Settings dialog}}'''&lt;br /&gt;
**{{Table of Contents/Link|General page}}&lt;br /&gt;
**{{Table of Contents/Link|Edit page}}&lt;br /&gt;
**{{Table of Contents/Link|Appearance page}}&lt;br /&gt;
**{{Table of Contents/Link|File page}}&lt;br /&gt;
**{{Table of Contents/Link|Save/Load page}}&lt;br /&gt;
**{{Table of Contents/Link|Clipboard page}}&lt;br /&gt;
**{{Table of Contents/Link|Search page}}&lt;br /&gt;
**{{Table of Contents/Link|Tools page}}&lt;br /&gt;
**{{Table of Contents/Link|Favourites page}}&lt;br /&gt;
**{{Table of Contents/Link|Filters page}}&lt;br /&gt;
**{{Table of Contents/Link|Settings page}}&lt;br /&gt;
*'''{{Table of Contents/Link|Saving Config}}'''&lt;br /&gt;
**{{Table of Contents/Link|Cascading Portable INI files}}&lt;br /&gt;
*'''{{Table of Contents/Link|Command line parameters}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|Hotkeys}}'''&lt;br /&gt;
*'''{{Table of Contents/Link|Appendix}}'''&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=User:Jsimlo/Todo&amp;diff=6017</id>
		<title>User:Jsimlo/Todo</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=User:Jsimlo/Todo&amp;diff=6017"/>
		<updated>2021-12-01T02:20:19Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== TedNPad.rc ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0|Review TedNPad Changes RC.txt}}&lt;br /&gt;
&lt;br /&gt;
== Chagelog ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0|Review TedNPad Changelog.txt}}&lt;br /&gt;
&lt;br /&gt;
== Further ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0| [[Special:WantedPages]]&lt;br /&gt;
{{:Special:WantedPages}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0| [[Special:WantedCategories]]&lt;br /&gt;
{{:Special:WantedCategories}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0| [[Special:UnusedCategories]]&lt;br /&gt;
{{:Special:UnusedCategories}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Control:Field:Settings:Save/Load:Revert_without_asking&amp;diff=6016</id>
		<title>Control:Field:Settings:Save/Load:Revert without asking</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Control:Field:Settings:Save/Load:Revert_without_asking&amp;diff=6016"/>
		<updated>2021-12-01T02:19:20Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Redirected page to Save/Load page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Save/Load page]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Control:Field:Settings:Save/Load:Auto-detect_Unicode_files&amp;diff=6015</id>
		<title>Control:Field:Settings:Save/Load:Auto-detect Unicode files</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Control:Field:Settings:Save/Load:Auto-detect_Unicode_files&amp;diff=6015"/>
		<updated>2021-12-01T02:19:17Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Redirected page to Save/Load page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Save/Load page]]&lt;br /&gt;
&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=User:Jsimlo/Todo&amp;diff=6014</id>
		<title>User:Jsimlo/Todo</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=User:Jsimlo/Todo&amp;diff=6014"/>
		<updated>2021-12-01T02:17:13Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== TedNPad.rc ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0|Review TedNPad Changes RC.txt}}&lt;br /&gt;
&lt;br /&gt;
== Chagelog ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0|Review TedNPad Changelog.txt}}&lt;br /&gt;
&lt;br /&gt;
== Further ==&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.0.10| [[Special:WantedPages]]&lt;br /&gt;
{{:Special:WantedPages}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0| [[Special:WantedCategories]]&lt;br /&gt;
{{:Special:WantedCategories}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{todo-version|6.3.1.0| [[Special:UnusedCategories]]&lt;br /&gt;
{{:Special:UnusedCategories}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Appver&amp;diff=6013</id>
		<title>Template:Appver</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Appver&amp;diff=6013"/>
		<updated>2021-11-30T23:38:59Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;6.3.1&amp;lt;noinclude&amp;gt;[[Category:Version 6.3.1.0|:Appver]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6010</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6010"/>
		<updated>2021-11-30T23:35:46Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* start&lt;br /&gt;
** TED Notepad Manual|Table of Contents&lt;br /&gt;
&lt;br /&gt;
* introduction&lt;br /&gt;
** Introduction|Introduction&lt;br /&gt;
** Agreement|Agreement&lt;br /&gt;
** Installation|Installation&lt;br /&gt;
** ChangeLog|ChangeLog&lt;br /&gt;
&lt;br /&gt;
* documentation&lt;br /&gt;
** Basic commands reference|Basic commands&lt;br /&gt;
** Tools reference|Tools reference&lt;br /&gt;
** Settings dialog|Settings dialog&lt;br /&gt;
** Saving Config|Saving Config&lt;br /&gt;
** Command line parameters|Command line&lt;br /&gt;
** Hotkeys|Hotkeys&lt;br /&gt;
** Appendix|Appendix&lt;br /&gt;
&lt;br /&gt;
* navigation&lt;br /&gt;
** http://jsimlo.sk/notepad/|TED Notepad homepage&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
&lt;br /&gt;
* community&lt;br /&gt;
** Help:Templates|Help: Templates&lt;br /&gt;
&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
&lt;br /&gt;
* administration&lt;br /&gt;
** Special:Recentchanges|Recent changes&lt;br /&gt;
** Special:BrokenRedirects|Broken redirects&lt;br /&gt;
** Special:WantedPages|Most wanted pages&lt;br /&gt;
** Special:UncategorizedPages|Uncategorized pages&lt;br /&gt;
** Special:WantedCategories|Wanted categories&lt;br /&gt;
** Special:UnusedCategories|Unused categories&lt;br /&gt;
** Special:Categories|Categories&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6009</id>
		<title>MediaWiki:Sidebar</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Sidebar&amp;diff=6009"/>
		<updated>2021-11-30T23:34:52Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* introduction&lt;br /&gt;
** TED Notepad Manual|Table of Contents&lt;br /&gt;
** Introduction|Introduction&lt;br /&gt;
** Agreement|Agreement&lt;br /&gt;
** Installation|Installation&lt;br /&gt;
** ChangeLog|ChangeLog&lt;br /&gt;
&lt;br /&gt;
* documentation&lt;br /&gt;
** Basic commands reference|Basic commands&lt;br /&gt;
** Tools reference|Tools reference&lt;br /&gt;
** Settings dialog|Settings dialog&lt;br /&gt;
** Saving Config|Saving Config&lt;br /&gt;
** Command line parameters|Command line&lt;br /&gt;
** Hotkeys|Hotkeys&lt;br /&gt;
** Appendix|Appendix&lt;br /&gt;
&lt;br /&gt;
* navigation&lt;br /&gt;
** http://jsimlo.sk/notepad/|TED Notepad homepage&lt;br /&gt;
&lt;br /&gt;
* SEARCH&lt;br /&gt;
&lt;br /&gt;
* comunity&lt;br /&gt;
** Help:Templates|Help: Templates&lt;br /&gt;
&lt;br /&gt;
* TOOLBOX&lt;br /&gt;
&lt;br /&gt;
* administration&lt;br /&gt;
** Special:Recentchanges|Recent changes&lt;br /&gt;
** Special:BrokenRedirects|Broken redirects&lt;br /&gt;
** Special:WantedPages|Most wanted pages&lt;br /&gt;
** Special:UncategorizedPages|Uncategorized pages&lt;br /&gt;
** Special:WantedCategories|Wanted categories&lt;br /&gt;
** Special:UnusedCategories|Unused categories&lt;br /&gt;
** Special:Categories|Categories&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=ChangeLog&amp;diff=6008</id>
		<title>ChangeLog</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=ChangeLog&amp;diff=6008"/>
		<updated>2021-11-30T23:33:17Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This listing describes all major changes between previous versions of TED Notepad.&lt;br /&gt;
Minor changes that did not affect difference between major versions listed here are omitted.&lt;br /&gt;
&lt;br /&gt;
; Version 6.3.1 (Dec 1, 2021)&lt;br /&gt;
: + Added: Memory-optimized document loading, able to load files up to 700MB long.&lt;br /&gt;
: + Added: Memory-optimized document saving, able to save files up to 800MB long.&lt;br /&gt;
: + Added: More detailed progress shown while loading big files.&lt;br /&gt;
: + Added: Large document saving shows progress.&lt;br /&gt;
: + Added: Detect and highlight URLs.&lt;br /&gt;
: + Added: Option to set the color for detected URLs.&lt;br /&gt;
: + Added: Launch selected URL in the Right-click menu.&lt;br /&gt;
: + Added: Web Search Selection in the Right-click menu.&lt;br /&gt;
: + Added: Visible spaces.&lt;br /&gt;
: + Added: Non-breaking spaces drawn differently from breaking spaces.&lt;br /&gt;
: + Added: Session on Top (i.e. Stay on Top for the current window only).&lt;br /&gt;
: + Added: Cut Append to Clipboard.&lt;br /&gt;
: + Added: Copy Append to Clipboard.&lt;br /&gt;
: + Added: Export settings to file.&lt;br /&gt;
: + Added: Import settings from file.&lt;br /&gt;
: + Added: Setting to change the saving period timer for autosave.&lt;br /&gt;
: + Added: Setting to auto-detect Unicode files without BOM by applying statistical analysis.&lt;br /&gt;
: + Added: Setting to auto-revert without asking when file is modified from outside.&lt;br /&gt;
: + Added: Setting to automatically flush file buffers upon Save.&lt;br /&gt;
: + Added: Setting to automatically delete the backup file after successful saving.&lt;br /&gt;
: + Added: Setting to Keep Escapes on if possible when suggesting selection to the Find dialog.&lt;br /&gt;
: + Added: Setting to use the main font in the Compare tool dialog.&lt;br /&gt;
: + Added: Setting for the Color of the Wrap Margin.&lt;br /&gt;
: + Added: Clear All Undo Steps in the Utility Info dialog.&lt;br /&gt;
: + Added: Compact Editbox memory usage in the Utility Info dialog.&lt;br /&gt;
: + Added: Clear Recent Files from Recent Files menu.&lt;br /&gt;
: + Added: Open Containing Folder, i.e. folder with current document.&lt;br /&gt;
: + Added: Open Command Line at the Containing Folder.&lt;br /&gt;
: + Added: Menu hints describing individual functions for convenience.&lt;br /&gt;
: + Added: Favourite files menu shows a separator if a dash &amp;quot;-&amp;quot; is specified.&lt;br /&gt;
: + Added: Replace pattern \L&amp;amp; to add the length of the whole match.&lt;br /&gt;
: + Added: Replace pattern \L1..9 to add the length of the given captured group.&lt;br /&gt;
: + Added: Replace pattern \L+ to add the length of the last successfull captured group.&lt;br /&gt;
: + Added: Replace pattern \#d to add decimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#x to add lowercase hexadecimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#X to add uppercase hexadecimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#b to add binary number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#o to add octal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \*d to add a random decimal number.&lt;br /&gt;
: + Added: Replace pattern \*x to add a random lowercase hexadecimal number.&lt;br /&gt;
: + Added: Replace pattern \*X to add a random uppercase hexadecimal number.&lt;br /&gt;
: + Added: Replace pattern \*b to add a random binary number.&lt;br /&gt;
: + Added: Replace pattern \*o to add a random octal number.&lt;br /&gt;
: + Added: Command line parameter /E that jumps to the end of the document.&lt;br /&gt;
: + Added: Command line parameter /v that pastes the Clipboard into the document after opening.&lt;br /&gt;
: + Added: Command line parameter /T that turns on Session on Top.&lt;br /&gt;
: + Added: Command line parameter /m that starts the session minimized.&lt;br /&gt;
: + Added: Command line parameter /M that starts the session maximized.&lt;br /&gt;
: + Added: Command line parameter /F that starts the session in Fullscreen.&lt;br /&gt;
: + Added: Command line parameter /H that starts the session with Hide to Tray.&lt;br /&gt;
: + Added: Command line parameter /x that starts the window at given position from left.&lt;br /&gt;
: + Added: Command line parameter /y that starts the window at given position from top.&lt;br /&gt;
: + Added: Command line parameter /w that starts the window with given width.&lt;br /&gt;
: + Added: Command line parameter /h that starts the window with given height.&lt;br /&gt;
: + Added: Command line parameter /A that opens the command line file as ANSI.&lt;br /&gt;
: + Added: Command line parameter /W that opens the command line file as UNICODE.&lt;br /&gt;
: + Added: Command line parameter /U that opens the command line file as UTF-8.&lt;br /&gt;
: + Added: Command line parameter /nf that specifies the file to be loaded.&lt;br /&gt;
: + Added: Command line parameter /nw that ignores unknown command line parameters.&lt;br /&gt;
: + Added: Command line parameter /nn that ignores the next command line string.&lt;br /&gt;
: + Added: Command line parameter /nm that terminates the command line.&lt;br /&gt;
: + Added: Command line parameter //p that resets the saved window position in Config.&lt;br /&gt;
: + Added: Command line parameter //s that resets the saved window size in Config.&lt;br /&gt;
: + Added: Command line parameter /? that launches the Online Manual.&lt;br /&gt;
: - Fixed: Autosave directly to original file.&lt;br /&gt;
: - Fixed: Saving modified documents while loading new documents.&lt;br /&gt;
: - Fixed: Missing Ctrl+Shift+Z hotkey added for Redo.&lt;br /&gt;
: - Fixed: Unindent multiple spaces when Insert Spaces instead of Tab is turned on.&lt;br /&gt;
: - Fixed: Save Checked now button in Settings dialog no longer saves greyed-out categories.&lt;br /&gt;
: - Fixed: Restore Defaults button in Settings dialog re-applies Cascading Portable INI files.&lt;br /&gt;
: - Fixed: Restore Defaults button in Settings dialog re-applies Status bar, Word Wrap, Placement, etc.&lt;br /&gt;
: - Fixed: Chosen categories of Settings are saved into Config after being previously unchosen.&lt;br /&gt;
: - Fixed: Unsaved document is automatically saved before execution of filter with %F variable.&lt;br /&gt;
: - Fixed: Filters always create stdin/stdout/stderr pipes, even with %F variable.&lt;br /&gt;
: - Fixed: Filters can push input and capture output even with %F variable.&lt;br /&gt;
: - Fixed: Filters can run &amp;quot;cmd.exe /c %~F&amp;quot; without crashing cmd.exe.&lt;br /&gt;
: - Fixed: Warning when filters are used with characters, which cannot be converted to as ANSI.&lt;br /&gt;
: - Fixed: Warning when filters produce characters, which cannot be converted back (to non-unicode version).&lt;br /&gt;
: - Fixed: All newlines are converted to Win type before they are sent to Filters.&lt;br /&gt;
: - Fixed: Binary characters (i.e. null character) are replaced with spaces before they are sent to filters.&lt;br /&gt;
: - Fixed: Reading multi-byte characters from Filters improved.&lt;br /&gt;
: - Fixed: Word Wrapping after Hyphens and Zero Width Spaces and Joiners.&lt;br /&gt;
: - Fixed: Not Word Wrapping after No-break Spaces and Joiners.&lt;br /&gt;
: - Fixed: Fixed text rewrapping sweeps upon loading big files.&lt;br /&gt;
: - Fixed: Fixed text rewrapping sweeps upon replacing lots of lines.&lt;br /&gt;
: - Fixed: Handling horizontal mouse wheel.&lt;br /&gt;
: - Fixed: Page Up and Page Down movement with very short windows.&lt;br /&gt;
: - Fixed: Switch to already opened document, while the other window is minimized.&lt;br /&gt;
: - Fixed: Mimic case in the Extended Replace tool.&lt;br /&gt;
: - Fixed: Extended Replace tool and Replace all: Regexp zero-length find and replace loop.&lt;br /&gt;
: - Fixed: Running Text Filter from Search and Tool.&lt;br /&gt;
: - Fixed: Aborting Search and Tool short-circuits the running Tool, aborting faster.&lt;br /&gt;
: - Fixed: BOM flag in the File menu is enabled only for relevant encodings.&lt;br /&gt;
: - Fixed: Error reported correctly when /p command line parameter is cancelled or fails.&lt;br /&gt;
: - Fixed: Collation and copies are left to be handled by the printer drivers due to &amp;quot;known OS issues&amp;quot;.&lt;br /&gt;
: * Selecting upwards from the first line more user-friendly by moving to the beginning of the first line.&lt;br /&gt;
: * Selecting downwards from the last line more user-friendly by moving to the end of the last line.&lt;br /&gt;
: * Optimized and improved text drawing, drawing very long lines, using drawing cache, etc.&lt;br /&gt;
: * Optimized and improved drawing binary characters, word-wrapping on binary files, etc.&lt;br /&gt;
: * Progress shown while painting long lines.&lt;br /&gt;
: * Positioning caret within ligatures improved.&lt;br /&gt;
: * More progress shown while loading huge files.&lt;br /&gt;
: * Settings dialog now says System Registry when the Config is stored in System Registry.&lt;br /&gt;
: * Added messages around file recovery from an autosave to navigate the user through the recovery.&lt;br /&gt;
: * View All Clips a little bit more accessibility-friendly and keyboard-only friendly.&lt;br /&gt;
: * Moving caret to the left by whole words is now slightly more granular.&lt;br /&gt;
: * Search Later shows a message in the Status Bar when Search is updated.&lt;br /&gt;
: * Search and Last Tool All also shows the total number of replacements.&lt;br /&gt;
: * The application now complains about unknown command line parameters.&lt;br /&gt;
: * File Properties moved to File -&amp;gt; System sub-menu.&lt;br /&gt;
: * Up to Sentences tool renamed to Make Sentences.&lt;br /&gt;
: * Save'n'Exit renamed to Save and Exit.&lt;br /&gt;
: * Increased maximum pattern size in Grep tool to 64 KiB.&lt;br /&gt;
: * Increased maximum pattern size in Find And Replace to 64 KiB.&lt;br /&gt;
: * Increased maximum pattern size in Extended Replace tool to 64 KiB.&lt;br /&gt;
: * Increased maximum string size in Compare tool to 64 KiB.&lt;br /&gt;
: * Raised the &amp;quot;Clip too long&amp;quot; warning threshold to 64 KiB.&lt;br /&gt;
: * Wrap Margin is turned on by default.&lt;br /&gt;
: * Line Numbers are turned on by default.&lt;br /&gt;
: * Some menu mnemonics were updated.&lt;br /&gt;
: * Reduced icon sizes.&lt;br /&gt;
: Changes against version 6.2.1.&lt;br /&gt;
&lt;br /&gt;
; Version 6.2.1 (Aug 22, 2019)&lt;br /&gt;
: + Added: Text Coloring.&lt;br /&gt;
: + Added: Grep, Filter lines by Pattern tool.&lt;br /&gt;
: + Added: Visually highlight Current Line.&lt;br /&gt;
: + Added: Length of the Current Selection shown in the Status bar.&lt;br /&gt;
: + Added: Visible newlines based on actual newlines.&lt;br /&gt;
: + Added: Visible Tabs.&lt;br /&gt;
: * Optimized drawing long lines and lines containing surrogates, composite characters, clusters.&lt;br /&gt;
: * Left margin no longer obscures text shifted to the left by horizontal scroll.&lt;br /&gt;
: * Added hint to Replace All Abort dialog suggesting Extended Replace tool instead.&lt;br /&gt;
: * Changed default value for File size warning setting to 10MiB.&lt;br /&gt;
: - Fixed: Undoing all changes makes the document unmodified.&lt;br /&gt;
: - Fixed: Unicode and non-unicode version no longer share the same config when storing strings.&lt;br /&gt;
: - Fixed: Preventing one file operation to run within another one, e.g. auto-save while loading a document.&lt;br /&gt;
: - Fixed: Including an empty file no longer changes current document's newlines.&lt;br /&gt;
: - Fixed: Drag-and-drop editing and Right-click on a single-character selection no longer impossible.&lt;br /&gt;
: - Fixed: Longer lines were not fully drawn with larger fonts due to limitations in Windows API.&lt;br /&gt;
: - Fixed: Default font size, printing font size, and font sizing algorithms, better DPI aware-ness.&lt;br /&gt;
: - Fixed: Line lengths are no longer jumping back and forth when selecting lines.&lt;br /&gt;
: - Fixed: Resizing window height recalculates potentially changing size of the horizontal scrollbar.&lt;br /&gt;
: - Fixed: Horizontal scrolling no longer recalculates horizontal scrollbar.&lt;br /&gt;
: - Fixed: Printing leading line tabs with non-zero left page margin.&lt;br /&gt;
: - Fixed: Replacing text unnecessarily redrawing following lines.&lt;br /&gt;
: - Fixed: Tab size visual extent rendering.&lt;br /&gt;
: - Fixed: Replace tool zero-length matching after non-zero-length matches.&lt;br /&gt;
: - Fixed: Partial loading of files over 4GB large.&lt;br /&gt;
: - Fixed: Partial UTF-8 BOM recognition.&lt;br /&gt;
: Changes against version 6.1.1. &lt;br /&gt;
&lt;br /&gt;
; Version 6.1.1 (Dec 4, 2016)&lt;br /&gt;
: + Added: Support for IME composing window.&lt;br /&gt;
: + Added: Added support for DPI-aware scaling.&lt;br /&gt;
: + Added: Push Line Up and Push Line Down for moving lines around.&lt;br /&gt;
: + Added: Drag&amp;amp;Drop editing; moving text by mouse is available via both buttons.&lt;br /&gt;
: + Added: Setting: Auto-save Untitled documents (into the Temp path).&lt;br /&gt;
: + Added: Setting: Store auto-save files in the Temp path instead of current directory.&lt;br /&gt;
: + Added: Setting: Store backup files in the Temp path instead of current directory.&lt;br /&gt;
: + Added: Setting: Temp path for storing autosave and backup files to, with relative paths support.&lt;br /&gt;
: + Added: Setting: Create backup files with hidden attribute.&lt;br /&gt;
: + Added: Setting: Create multiple backup files and rotate them.&lt;br /&gt;
: + Added: Setting: Warn on loading binary files.&lt;br /&gt;
: + Added: Setting: Ignore case in quick Sort tools.&lt;br /&gt;
: + Added: Check for Updates and Automatic Check for updates.&lt;br /&gt;
: + Added: If there is a new version available, hint is displayed in the StatusBar.&lt;br /&gt;
: + Added: Command line parameter: /u Check for Updates.&lt;br /&gt;
: + Added: Command line parameter: /l Go to Line accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameter: /c Go to Offset accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameter: /s Set Selection accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameters: /l Go to Line and /c Go to Offset can be used together.&lt;br /&gt;
: - Fixed: Italics fonts are no longer clipped.&lt;br /&gt;
: - Fixed: Selection background does not clip nearby characters anymore.&lt;br /&gt;
: - Fixed: Each tab character now enforces at least some minimum visual extent.&lt;br /&gt;
: - Fixed: Selected end-of-line extent and visible end-of-line extent were unified.&lt;br /&gt;
: - Fixed: When switching to another instance of the same document, no unexpected questions are asked anymore.&lt;br /&gt;
: - Fixed: Message about another instance of the same document takes precedence over message about lost auto-save found.&lt;br /&gt;
: - Fixed: Document is not auto-saved if there are no modifications since last auto-save.&lt;br /&gt;
: - Fixed: The user is now warned that it is necessary to save recovered document.&lt;br /&gt;
: - Fixed: Auto-save file was not always removed after successful recovery.&lt;br /&gt;
: - Fixed: Canceling Revert operation no longer removes current auto-save.&lt;br /&gt;
: - Fixed: Chosen encoding or code page is no longer reset during Revert.&lt;br /&gt;
: - Fixed: Overwrite flag is no longer reset during Revert or Re-open.&lt;br /&gt;
: - Fixed: Creating a new file during loading adds such new file to Recent files.&lt;br /&gt;
: - Fixed: Relative paths are supported for Template file and are not updated during loading.&lt;br /&gt;
: - Fixed: Changing current encoding also changes BOM flag to reasonable default.&lt;br /&gt;
: - Fixed: Default newlines are used upon no newlines in the loaded file.&lt;br /&gt;
: - Fixed: Default newlines are used upon mixed newlines in the loaded file when No mixed newlines setting is in force.&lt;br /&gt;
: - Fixed: Default newlines are used upon mixed newlines in the document if No mixed newlines setting is turned on.&lt;br /&gt;
: - Fixed: Lists of available codepages split into categories for easier navigation.&lt;br /&gt;
: - Fixed: Shift+BackSpace deletes previous character just like a simple BackSpace.&lt;br /&gt;
: - Fixed: Insert Recently Inserted text was needlessly unavailable sometimes.&lt;br /&gt;
: - Fixed: Sorted Complete Word dialog was inserting incorrect suggestions.&lt;br /&gt;
: - Fixed: Right-click menu could appear on a wrong position upon several displays.&lt;br /&gt;
: - Fixed: Scrolling by mouse via selecting text outside of edit window has been slowed down.&lt;br /&gt;
: - Fixed: Message is displayed after successful replace and no further occurrences.&lt;br /&gt;
: - Fixed: Replace tool used empty string upon undefined back-references, even when the user chose to skip such occurrences.&lt;br /&gt;
: - Fixed: Propper icon recovery while re-starting crashed Windows Explorer.&lt;br /&gt;
: - Fixed: Keyboard focus was not relinquished properly upon Hide to Tray.&lt;br /&gt;
: - Fixed: Saving widnows position and/or size and restoring them was reviewed.&lt;br /&gt;
: - Fixed: Config INI file is only updated upon actual changes in the config data.&lt;br /&gt;
: - Fixed: Some funky edge cases were fixed in various tools and features.&lt;br /&gt;
: * Esc key cancels any ongoing mouse operation.&lt;br /&gt;
: * Right-click can also be used to select text before the Right-click menu appears.&lt;br /&gt;
: * Paste from clipboard thru Ctrl+Right-click occurs only upon releasing the button.&lt;br /&gt;
: * Selected lines are slightly accentuated by double-drawing the text.&lt;br /&gt;
: * ODO meter and Trip meter were added to the Utility info dialog for amusement.&lt;br /&gt;
: * Overwrite mode menu item added to Options menu for convenience.&lt;br /&gt;
: * Date/time glue setting moved from the Tools page to the General page.&lt;br /&gt;
: * Warning is show in the Status Bar upon saving Unicode file with no BOM.&lt;br /&gt;
: * Document title is always displayed in the taskbar and caption, even if also showing the full file path.&lt;br /&gt;
: * Stay on Top is saved along with other common options in the Basic Options category.&lt;br /&gt;
: * Newlines are now decoded in Could not find messages; with a new setting to disable this.&lt;br /&gt;
: * Progress percentage during re-wrap has been rewritten to give a more linear user experience.&lt;br /&gt;
: * The .reloc section was removed from executables in a hope all future Windows will accomodate.&lt;br /&gt;
: * Executable code was moved back to the .text section where it belongs.&lt;br /&gt;
: * Read-only data was moved back to the .rdata section where it belongs.&lt;br /&gt;
: * Text storage engine improved to support files with truckload of lines.&lt;br /&gt;
: * Text storage engine memory usage and general behaviour optimized.&lt;br /&gt;
: * Edit box behaviour and other code optimized.&lt;br /&gt;
: * Utf-8 recognition algorithm fortified.&lt;br /&gt;
: Changes against version 6.0.2. &lt;br /&gt;
&lt;br /&gt;
; Version 6.0.2 (Nov 30, 2011)&lt;br /&gt;
: - Fixed: Initialization of Random number generator in multi-threaded tools.&lt;br /&gt;
: Changes against version 6.0.1. &lt;br /&gt;
&lt;br /&gt;
; Version 6.0.1 (Nov 2, 2011)&lt;br /&gt;
: This version is a complete rewrite of the entire project. Small changes might be left out by omission.&lt;br /&gt;
: + Search and Replace dialog replaced by Search Bar.&lt;br /&gt;
: + Added: Support for Escapes and Regular Expressions in search/replace patterns.&lt;br /&gt;
: + Added: Experimental Search and Last Tool concept. Similar to Search and Replace.&lt;br /&gt;
: + Added: Long searches automatically display an abort dialog.&lt;br /&gt;
: + Added: Option to Mimic Case upon Search and Replace.&lt;br /&gt;
: + Added: Auto-search for current word upon no selection in Find Selected.&lt;br /&gt;
: + Added: Extended Replace also supports Escapes, RegExps and Mimic Case.&lt;br /&gt;
: + Added: Support for user-defined color of text and background.&lt;br /&gt;
: + Added: Random Color Scheme generator in Settings dialog.&lt;br /&gt;
: + Added: Display Line Numbers, Newlines and Line Lengths.&lt;br /&gt;
: + Added: ZoomIn, ZoomOut, ZoomReset.&lt;br /&gt;
: + Added: Auto-recognition of UTF-8 files without BOM.&lt;br /&gt;
: + Added: Import/Export/Reopen file in chosen encoding or codepage.&lt;br /&gt;
: + Added: Full transparent support for binary files (load+edit+save).&lt;br /&gt;
: + Added: Full transparent support for mixed newlines (load+edit+save).&lt;br /&gt;
: + Added: Command line parameter: /b Skips the &amp;quot;Create new file&amp;quot; question.&lt;br /&gt;
: + Added: Option to auto-save documents directly to their original files.&lt;br /&gt;
: + Added: Option to create recovery auto-save files with hidden attribute.&lt;br /&gt;
: + Added: Question, whether to auto-load a lost auto-save version of a file.&lt;br /&gt;
: + Added: Question about saving before closing is skipped for empty Untitled documents.&lt;br /&gt;
: + Added: Favourite files now support relative paths.&lt;br /&gt;
: + Added: Template file for new documents.&lt;br /&gt;
: + Added: Shuffle Lines tool.&lt;br /&gt;
: + Added: First Capital, Random Case and Fun Case tools.&lt;br /&gt;
: + Added: Unclose Lines, Trim Empty Lines and Shift Lines Right tool.&lt;br /&gt;
: + Added: Collapse Empty Lines tool.&lt;br /&gt;
: + Added: Unwrap Lines tool.&lt;br /&gt;
: + Added: Extract Words tool.&lt;br /&gt;
: + Added: Most tools are now showing their progress and support cancel.&lt;br /&gt;
: + Added: Classic old system edit control replaced by new improved editbox.&lt;br /&gt;
: + Added: Text storage engine with improved support for working with huge files.&lt;br /&gt;
: + Added: Support for very long lines (current limit is set to 1 MiB).&lt;br /&gt;
: + Added: Multi-level Undo and Redo. Better Undo granularity.&lt;br /&gt;
: + Added: Legacy single-level Undo still available through Alt+BkSpace.&lt;br /&gt;
: + Added: More sensitive navigation through entire words.&lt;br /&gt;
: + Added: Support for Triple/Quadruple/Quintuple-click and mouse selecting.&lt;br /&gt;
: + Added: Option to auto-Copy to clipboard upon mouse selection.&lt;br /&gt;
: + Added: Paste/Swap from clipboard upon mouse Ctrl-Right-click.&lt;br /&gt;
: + Added: Option to Mimic Case upon Paste from clipboard.&lt;br /&gt;
: + Added: Option to auto-select current word/line/paragraph/document upon empty Copy/Cut.&lt;br /&gt;
: + Added: Insert Recently Inserted and Recently Deleted text.&lt;br /&gt;
: + Added: Support for Smart Home and End keys, working with indentation&lt;br /&gt;
: + Added: Support for moving/selecting by entire paragraphs.&lt;br /&gt;
: + Added: Option to keep distance between the Caret and window borders.&lt;br /&gt;
: + Added: Improved and enriched Right-click menu.&lt;br /&gt;
: + Added: Support for Insert/Overwrite mode.&lt;br /&gt;
: + Added: Horizontal mouse-wheel scrolling.&lt;br /&gt;
: + Added: Improved INI files for saving settings into Config.&lt;br /&gt;
: + Added: Support for hierarchical INI file loading.&lt;br /&gt;
: + Added: Command line parameter: /i Load specified INI file&lt;br /&gt;
: + Added: Location of current INI file added to Settings dialog.&lt;br /&gt;
: + Added: Printing font.&lt;br /&gt;
: + Added: Page Setup for printing.&lt;br /&gt;
: + Added: Check Updates shortcut.&lt;br /&gt;
: + Added: Sort tool: Up to five independent sorting keys available.&lt;br /&gt;
: + Added: Sort tool: Range of columns can be specified in each sorting key.&lt;br /&gt;
: + Added: Sort tool: Option to ignore white-spaces and/or punctuation while sorting.&lt;br /&gt;
: + Added: Sort tool: Option to ignore all but alpha-numeric characters while sorting.&lt;br /&gt;
: + Added: Sort tool: Option to ignore blank and/or control characters while sorting.&lt;br /&gt;
: + Added: Sort tool: Options to ignore characters supported even while sorting as numbers.&lt;br /&gt;
: + Added: Sort tool: Uses current user locale settings while sorting as numbers.&lt;br /&gt;
: + Added: Sort tool: Support for positive signs while sorting as numbers.&lt;br /&gt;
: * Modif: Sort tool: Sorting keys no longer depend on previous keys.&lt;br /&gt;
: + Added: Columns and Sort tools: Option to &amp;quot;delimit by entire phrase&amp;quot; rather than &amp;quot;separate characters&amp;quot;.&lt;br /&gt;
: + Added: Columns and Sort tools: Options for saving info from tool dialogs into the Config.&lt;br /&gt;
: * Modif: Columns and Sort tools: Tool dialogs accept ranges and columns inverted.&lt;br /&gt;
: + Added: Columns tool: Random number insertion point (%r).&lt;br /&gt;
: * Modif: Columns tool: Center alignment modifier changed from ^ to !.&lt;br /&gt;
: + Added: Translate Charaters tool: Supports escapes and ranges.&lt;br /&gt;
: + Added: XmlTag tool: Works more carefully with singleline/multiline selections.&lt;br /&gt;
: * Modif: XmlTag tool: Reselects the original selection after enclosing it.&lt;br /&gt;
: + Added: XmlTag tool: Option to keep or reset fields &amp;quot;Attributes&amp;quot; and &amp;quot;Empty&amp;quot;.&lt;br /&gt;
: + Added: Compare tool: State of checkboxes from tool dialog are saved into Config.&lt;br /&gt;
: + Added: Compare tool: Option for saving the compared strings into Config as well.&lt;br /&gt;
: + Added: Filters: New variable %S, which expands with current selection.&lt;br /&gt;
: + Added: Filters: Option to convert all text to/from UTF-8.&lt;br /&gt;
: + Added: Filters: Option to push no input (stdin) into filter.&lt;br /&gt;
: + Added: Filters: Option to ignore output (stdout/stderr) from filter.&lt;br /&gt;
: + Added: Filters: Option to mix output (stdout/stderr) from filter together.&lt;br /&gt;
: + Added: Filters: Option to display filter output as message instead of replacing.&lt;br /&gt;
: + Added: Filters: Option to auto-exit when filter is finished.&lt;br /&gt;
: + Added: Filters: Option to skip saving upon auto-exit when filter is finished.&lt;br /&gt;
: + Added: Filters: Option to ignore filter's return value.&lt;br /&gt;
: + Added: Filters: Option to wait for filter to finish.&lt;br /&gt;
: + Added: Filters: Option to skip the launch dialog.&lt;br /&gt;
: + Added: Filters: Quoting variable modifiers, which escape all double-quotes while expanding.&lt;br /&gt;
: + Added: Search and Replace All feature groups Undo steps into one Undo step.&lt;br /&gt;
: + Added: Search and Replace All feature shows total count of replacements in the Status Bar.&lt;br /&gt;
: + Added: Progress and info messages displayed in the Status Bar during most operations.&lt;br /&gt;
: + Added: Undo feature can now remember the last document save-point.&lt;br /&gt;
: + Added: Double-clicks on the Status Bar supported (as shortcuts to anticipated actions).&lt;br /&gt;
: + Added: Word Wrap indicator in the Status Bar.&lt;br /&gt;
: + Added: Current character value in the Status Bar.&lt;br /&gt;
: + Added: Suggest filename from first line supports longer filenames.&lt;br /&gt;
: + Added: Suggest filename from first line now works also in Exclude File feature.&lt;br /&gt;
: + Added: Option to confirm with user whether to exit by Esc key.&lt;br /&gt;
: + Added: Option to prevent insertion of control characters.&lt;br /&gt;
: + Added: Option to show bold Caret upon Overwrite mode.&lt;br /&gt;
: + Added: Option to improve definition of what a word consists of.&lt;br /&gt;
: + Added: Option to Indent selection (of multiple lines) with simple Tab key.&lt;br /&gt;
: + Added: Option to reduce Undo steps to the last single step upon Save.&lt;br /&gt;
: + Added: Option to persist current scrolling during tools.&lt;br /&gt;
: + Added: Option to auto-hide the Search Bar after it has been used.&lt;br /&gt;
: + Added: Option to auto-hide the Search Bar only after a successful use.&lt;br /&gt;
: + Added: Options to reset/keep specific search attributes in the Search Bar.&lt;br /&gt;
: + Added: Option to execute search as non-abortable (for compatibility).&lt;br /&gt;
: + Added: Option to execute all tools as non-abortable (for compatibility).&lt;br /&gt;
: + Added: Option to warn, when a file being loaded is bigger than a specific value.&lt;br /&gt;
: + Added: Support for overriding user locale settings (number formats, date/time formats).&lt;br /&gt;
: + Added: Many more settings and options to subtly adjust behaviour of features.&lt;br /&gt;
: - Fixed: Malformed UTF-8 files could cause loading troubles.&lt;br /&gt;
: - Fixed: Save As dialog allows read-only files when read-only files can be forced.&lt;br /&gt;
: - Fixed: Save As dialog no longer changes current working directory on the way.&lt;br /&gt;
: - Fixed: Switch to already opened document, while the other document's window is in tray.&lt;br /&gt;
: - Fixed: Troubles with changing the opened-and-watched-for-modifications file too rapidly.&lt;br /&gt;
: - Fixed: The opened-and-watched-for-modifications file no longer share-locked unnecessarily.&lt;br /&gt;
: - Fixed: Statistics tool: Average line length computed over non-empty lines only.&lt;br /&gt;
: - Fixed: Statistics tool: Line lengths (avg/min/max) ignore tail white-spaces.&lt;br /&gt;
: - Fixed: Unique Lines tool: Duplicates of empty lines not counted upon Leave empty lines.&lt;br /&gt;
: - Fixed: Unique Lines tool: Improved algorithm used in the tool (bug with quadratic impact).&lt;br /&gt;
: - Fixed: SysTray icon reappears after explorer/taskbar crash and recreation.&lt;br /&gt;
: * Improved and more user-friendly Go to dialog.&lt;br /&gt;
: * Statistics tool dialog supports copying of the values into clipboard.&lt;br /&gt;
: * Settings dialog now remembers the last active tab for convenience.&lt;br /&gt;
: * All tools working with selection can now auto-select word/line/paragraph/document.&lt;br /&gt;
: * Changing document Encoding or Newlines makes the document modified.&lt;br /&gt;
: * Old Margin Bar renamed to Wrap Margin. It soft-wraps lines upon Word Wrap.&lt;br /&gt;
: * Message &amp;quot;Search pattern not found!&amp;quot; now includes the search pattern.&lt;br /&gt;
: * Current selection and scrolling try to persist Search and Replace All operation.&lt;br /&gt;
: * Search and Replace All draws all changes at once if there is no idle CPU.&lt;br /&gt;
: * Undo is available in the Search Bar, when selection is pre-filled as new pattern.&lt;br /&gt;
: * Ability to define and use the Second Search through the Search Bar.&lt;br /&gt;
: * Longer patterns (up to 8 KiB) allowed in the Search Bar.&lt;br /&gt;
: * The selection is reversed upon searching upwards.&lt;br /&gt;
: * Word Wrap rewraps the line being edited correctly, including previous word.&lt;br /&gt;
: * Better maintenance of current scrolling and selection upon reverting the document.&lt;br /&gt;
: * Better maintenance of current scrolling upon rewrapping lines of the document.&lt;br /&gt;
: * Horizontal Scroll Bar tries to be a bit smarter and less resource consuming.&lt;br /&gt;
: * Quote Mail tool removed.&lt;br /&gt;
: * Few hotkeys modified or switched between functions.&lt;br /&gt;
: * Tools sub-menu and Edit sub-menu rearranged a bit. All dialogs improved.&lt;br /&gt;
: * Defaults for some of the settings modified to fit the new capabilities.&lt;br /&gt;
: * Few config names changed or moved to prevent sharing with old versions.&lt;br /&gt;
: * Core memory-handling and text-processing routines improved.&lt;br /&gt;
: * Non-linear generator of pseudo-random numbers used in tools.&lt;br /&gt;
: * Default fonts changed to Courier New and Arial.&lt;br /&gt;
: * New application icon introduced.&lt;br /&gt;
: Changes against version 5.4.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.4.2 (Jun 17, 2009)&lt;br /&gt;
: - Fixed: Invalid characters in Suggest filename from first line.&lt;br /&gt;
: Changes against version 5.4.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.4.1 (Apr 30, 2009)&lt;br /&gt;
: + Added: Fullscreen mode.&lt;br /&gt;
: + Added: Spawn New Window feature.&lt;br /&gt;
: + Added: Option for Longest completion in Complete Word feature.&lt;br /&gt;
: + Added: Option for Ignore case in Complete Word feature.&lt;br /&gt;
: + Added: Option to rotate the Search over the edge of the document.&lt;br /&gt;
: - Fixed: Favorites menu not numbered with accelerator keys.&lt;br /&gt;
: - Fixed: Unique Lines and Unique Lines with Ignore case interchanged.&lt;br /&gt;
: - Fixed: Number of Favorites menu items unnecessarily limited to 10.&lt;br /&gt;
: - Fixed: Could not Delete Line when there was only one line left in the document.&lt;br /&gt;
: - Fixed: Remove Empty Lines tool, which could result in crash.&lt;br /&gt;
: * Size of the printing font and printing margins modified.&lt;br /&gt;
: * When a loaded file has no newlines, the default newline type is assumed.&lt;br /&gt;
: * When a loaded file is empty (zero length), the default encoding is assumed.&lt;br /&gt;
: * XML/HTML Tag tool adds newlines to the content, if used on multiple lines.&lt;br /&gt;
: * Recent Files recollection option removed from the Settings.&lt;br /&gt;
: Changes against version 5.3.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.3.1 (Apr 18, 2007)&lt;br /&gt;
: + Added: Indent selection is also possible by Tab key. Unindent by Shift+Tab key.&lt;br /&gt;
: + Added: Option to show full path and file name within the caption.&lt;br /&gt;
: + Added: Option to warn upon loading, if the same file is already opened in another window.&lt;br /&gt;
: + Added: Option to watch the opened file and ask for a Revert, when it is changed from outside.&lt;br /&gt;
: + Added: Option to auto-save the document every 5 minutes to a temporary recovery file.&lt;br /&gt;
: + Added: Option to keep the file name even when the loading has failed (for advanced users).&lt;br /&gt;
: + Added: Option to save UTF-8/Unicode files without the leading BOM (for advanced users).&lt;br /&gt;
: + Added: Option to load UTF-8/Unicode files without the leading BOM (for advanced users).&lt;br /&gt;
: + Added: Option about the default path for Open/Save dialogs.&lt;br /&gt;
: + Added: Option to force saving of read-only files.&lt;br /&gt;
: + Added: Support for saving of hidden/system files.&lt;br /&gt;
: + Added: Option to use the first line as a Filename instead of Untitled.&lt;br /&gt;
: + Added: Option to create backup files.&lt;br /&gt;
: + Added: Select Line feature.&lt;br /&gt;
: + Added: Date/Time and Long Date/Time tools.&lt;br /&gt;
: - Fixed: Statistics tool calculated values with active word wrapping.&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was half-broken.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: - Fixed: While saving filters/favourites into the Registry, old values were not deleted.&lt;br /&gt;
: * Filter dialog is skipped, when no parameters are required for an invoked filter.&lt;br /&gt;
: * Complete word dialod is skipped, when there is only one possible completion.&lt;br /&gt;
: * BkSpace/Delete/Truncate Line features no longer works according to the actual word-wrapping.&lt;br /&gt;
: * While quoting/indenting non-empty lines, only zero-length lines are considered to be empty.&lt;br /&gt;
: * Saving/loading routines rewritten and optimized for better and safer performance.&lt;br /&gt;
: * When unicode characters are loaded in a non-unicode version, warning is displayed.&lt;br /&gt;
: * The selection persists the Revert feature.&lt;br /&gt;
: * Application can also remember, whether the window was maximized upon exit.&lt;br /&gt;
: Changes against version 5.2.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.2.1 (Nov 11, 2006)&lt;br /&gt;
: + Added: Find Later.&lt;br /&gt;
: + Added: XML/HTML Tag tool.&lt;br /&gt;
: + Added: Relative jumping in Go to dialog.&lt;br /&gt;
: + Added: Selecting text in Go to dialog.&lt;br /&gt;
: + Added: Trim Tailing Spaces tool.&lt;br /&gt;
: + Added: Shift Lines Left tool.&lt;br /&gt;
: + Added: Remove Empty Lines tool.&lt;br /&gt;
: + Added: Reverse Words on Line, Reverse Each Line, Reverse Words tools.&lt;br /&gt;
: + Added: New variable (%n) for newlines in Cut Columns tool.&lt;br /&gt;
: - Fixed: Minor bug with Status Bar panel sizes calculation.&lt;br /&gt;
: * Enclose Selection places the caret between its strings, if the selection is empty.&lt;br /&gt;
: Changes against version 5.0.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.0.3 (Jan 11, 2007)&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was broken.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: Changes against version 5.0.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.0.1 (Jul 12, 2006)&lt;br /&gt;
: + Added: Secondary search.&lt;br /&gt;
: + Added: Copy Similar Line.&lt;br /&gt;
: + Added: Copy Word Above.&lt;br /&gt;
: + Added: Cut Columns tool.&lt;br /&gt;
: + Added: Find Selected.&lt;br /&gt;
: + Added: Both searches are saved, along with other settings.&lt;br /&gt;
: + Added: Full support of storing the settings in a portable INI file.&lt;br /&gt;
: + Added: Full support for Mac newlines. Convert from/to Mac tools.&lt;br /&gt;
: + Added: Insert Tabs as Spaces and automatic Smart Return auto-indentation.&lt;br /&gt;
: + Added: Tabify Indentation and Untabify Indentation tools.&lt;br /&gt;
: + Added: Non-empty lines counter into Statistics dialog.&lt;br /&gt;
: + Added: Delete Line, Truncate Line, BkSpace Line.&lt;br /&gt;
: + Added: Reverse Each Word tool.&lt;br /&gt;
: + Added: Option that leaves empty lines in the Unique Lines tool.&lt;br /&gt;
: + Added: Option that skips white-spaces in Quote/Indent Selection tool.&lt;br /&gt;
: + Added: File modified asterix flag within main window caption.&lt;br /&gt;
: + Added: More Status Bar info: Number of lines, line length and document length.&lt;br /&gt;
: + Added: Insert File Name and Insert File Title tools.&lt;br /&gt;
: + Added: To the next/previous Line, disobeying wordwrapping.&lt;br /&gt;
: + Added: Moveable and hideable Right Margin Bar.&lt;br /&gt;
: + Added: Setting that counts Line numbers unwrapped even in the Status Bar.&lt;br /&gt;
: - Fixed: Continuous whole words matching minor bug fixed.&lt;br /&gt;
: - Fixed: RE clone: Some newline bugs and minor searching bugs fixed.&lt;br /&gt;
: * Smart Return and Copying Return work with last non-empty unwrapped line.&lt;br /&gt;
: * Indent Selection tool does not indent empty lines.&lt;br /&gt;
: * Several features/tools are more compatibile with the Undo feature.&lt;br /&gt;
: * Go to Line and Go to Char command-line parameters are no longer exclusive.&lt;br /&gt;
: * The Tabs as Spaces setting also affects the Indent Selection tool.&lt;br /&gt;
: * Tools converting Unix/Mac newlines no longer work with an entire document.&lt;br /&gt;
: * New Search menu has been created for both searching mechanisms.&lt;br /&gt;
: * Hotkeys of Select Word, Add Word and Complete Word have been changed.&lt;br /&gt;
: * Application is returning negative error codes upon startup troubles.&lt;br /&gt;
: * Several routines have been optimized to achieve better performance.&lt;br /&gt;
: * Sorting tool optimized a bit. All line-oriented tools optimized.&lt;br /&gt;
: Changes against version 4.5.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.5.5 (Jan 04, 2007)&lt;br /&gt;
: + Added: File modified flag is also shown within window caption.&lt;br /&gt;
: + Added: Text limit value is allowed to be zero for no actual limit.&lt;br /&gt;
: + Added: Printing the selection only is available.&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was broken.&lt;br /&gt;
: - Fixed: Posible memory leaks caused by unhandled realloc failure.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: - Fixed: Printing mechanism has been fixed.&lt;br /&gt;
: - Fixed: Characters recognition is now fully user locale friendly.&lt;br /&gt;
: - Fixed: Find mechanism is now gathering dialog info only when appropriate.&lt;br /&gt;
: * Find/Replace mechanism modified to resemble the default notepad behavior.&lt;br /&gt;
: * Recent files are remembered upon successful file saving.&lt;br /&gt;
: * To open Manual, it has to be in the same directory, as the executable is.&lt;br /&gt;
: Changes against version 4.5.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.5.1 (Jul 1, 2005)&lt;br /&gt;
: + Added: Full UTF-8 files support.&lt;br /&gt;
: + Added: Full Big-endian UNICODE files support.&lt;br /&gt;
: + Added: Swap clipboard and selection (copy and paste together).&lt;br /&gt;
: + Added: Find previous, Select to previous features.&lt;br /&gt;
: + Added: Find/Replace works in both directions with whole word option enabled.&lt;br /&gt;
: + Added: Favourites menu.&lt;br /&gt;
: + Added: Whole words option in Extended Replace.&lt;br /&gt;
: + Added: Delete all other characters option in Translate Characters.&lt;br /&gt;
: + Added: .LOG extension support from Windows Notepad.&lt;br /&gt;
: + Added: File Properties dialog of the current document.&lt;br /&gt;
: + Added: Word wrapping into printing support.&lt;br /&gt;
: + Added: Command line parameter: /p Print.&lt;br /&gt;
: + Added: Printing the selection only.&lt;br /&gt;
: - Fixed: Printing mechanism has been completely rewritten.&lt;br /&gt;
: - Fixed: Window creeped-up when taskbar was located at the top of the screen.&lt;br /&gt;
: - Fixed: RE clone only: Find/Replace mechanism counted newlines incorrectly.&lt;br /&gt;
: * Sorting tool rewritten and optimized a bit. Supports better numbers sorting.&lt;br /&gt;
: * Enclose Selection tool modified. Enclose Selection dialog added.&lt;br /&gt;
: * Replace All mechanism now works with the entire document, as supposed to.&lt;br /&gt;
: * Find/Replace algorithms rewritten and optimized a lot.&lt;br /&gt;
: * Saving, loading and managing of settings modified.&lt;br /&gt;
: * Finally, all read and write share locks were removed.&lt;br /&gt;
: * A warning is raised when conversion from UNICODE to ANSI is not to be lossless.&lt;br /&gt;
: * A question about creating a new file is raised upon opening a missing file.&lt;br /&gt;
: * Some tools allowed on empty selections too.&lt;br /&gt;
: * Assembly-level code optimizations. Speed increased, application size decreased.&lt;br /&gt;
: Changes against version 4.3.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.3.1 (Sep 14, 2004)&lt;br /&gt;
: + Added: Complete Word.&lt;br /&gt;
: + Added: Select to Next.&lt;br /&gt;
: + Added: Drag &amp;amp; Drop support.&lt;br /&gt;
: + Added: Copying Return.&lt;br /&gt;
: + Added: Revert.&lt;br /&gt;
: + Added: Add Next Word.&lt;br /&gt;
: + Added: Save and Exit as F10 hotkey.&lt;br /&gt;
: + Added: Full binary files support.&lt;br /&gt;
: + Added: Full and transparent UNIX-files support.&lt;br /&gt;
: + Added: Last Used Tool.&lt;br /&gt;
: + Added tools: Unique Lines, Close Lines.&lt;br /&gt;
: + Added tools: Unindent Selection, Unquote Selection.&lt;br /&gt;
: + Added tools: Include From File, Exclude Fo File.&lt;br /&gt;
: + Added tool: Extended Replace. (Without regular expressions. Use grep as a filter.)&lt;br /&gt;
: + Added tool: Filters Architecture. (Simple text-filtering plug-ins architecture.)&lt;br /&gt;
: + Added tool: More options and Show column button added to the Sorting tool dialog.&lt;br /&gt;
: + Added tool: Crc32 sum value to Statistics tool.&lt;br /&gt;
: + Added: Command line parameters: /l Go to line, /c Go to char, /s Set Selection.&lt;br /&gt;
: + Added: Command line parameters: /a Select All, /d Do Command.&lt;br /&gt;
: + Added: Command line parameters: /nl NoLoad Settings, /ns NoSave Settings.&lt;br /&gt;
: + Added: Variety of view scrolling hotkeys. See hotkeys list.&lt;br /&gt;
: + Added: Hotkeys to Extended Clipboards dialog.&lt;br /&gt;
: + Added: Option of definition of a word: Whether include underscore.&lt;br /&gt;
: + Added: Disobey Word Wrapping in Go to Line.&lt;br /&gt;
: + Added: RE clone only: auto URL detection.&lt;br /&gt;
: - Fixed: Troubles with the size and position of minimized/maximized main window.&lt;br /&gt;
: - Fixed: Multibyte characters save troubles and binary files load minor bug.&lt;br /&gt;
: * All read-share locks removed, write write-share lock removed.&lt;br /&gt;
: * Unwrap tool has been modified to preserve paragraphs.&lt;br /&gt;
: * Missing GetLongPathName export function added for Win95 and WinNT4.&lt;br /&gt;
: * Smart Return, Title Case and Compare Strings modified a bit.&lt;br /&gt;
: * Select Word, Delete/BkSpace Spaces (now Delete/BkSpace Word) features modified.&lt;br /&gt;
: * First RichEdit (RE) clone released.&lt;br /&gt;
: Changes against version 3.1.1.&lt;br /&gt;
&lt;br /&gt;
; Version 3.1.1 (Nov 26, 2003)&lt;br /&gt;
: + Added: Recently opened files.&lt;br /&gt;
: + Added: Delete Spaces, BkSpace Spaces.&lt;br /&gt;
: + Added: Possibility of replacing multiple lines.&lt;br /&gt;
: + Added: Automatic use of the selection in Find/Replace Dialogs.&lt;br /&gt;
: + Added: Dual font switching (Fixed/Proportional - Default/Custom).&lt;br /&gt;
: + Added tools: Date/time Tools.&lt;br /&gt;
: + Added tools: Sort Ascending, Sort Descending.&lt;br /&gt;
: + Added tools: Indent Selection, Quote mail.&lt;br /&gt;
: + Added tools: Comit Word Wrap, Unwrap Selection.&lt;br /&gt;
: + Added: Left selection margin, Tab size, Default file type.&lt;br /&gt;
: + Added tools: Compare, Statistics.&lt;br /&gt;
: + Added: Select Word, Smart Return.&lt;br /&gt;
: + Added tools: Title and Sentence Case tools.&lt;br /&gt;
: + Added: Manual and instalation. Help was removed.&lt;br /&gt;
: * Sorting tool optimized. Reading/saving of files optimized.&lt;br /&gt;
: * Maintenance of Settings was completely modified.&lt;br /&gt;
: * Hotkeys of some tools were modified.&lt;br /&gt;
: Changes against version 2.6.1.&lt;br /&gt;
&lt;br /&gt;
; Version 2.6.1 (Dec 16, 2002)&lt;br /&gt;
: + Added tool: Sort - beta version of the sorting tool.&lt;br /&gt;
: + Added: Word Wrap option.&lt;br /&gt;
: + Added: Save Settings option.&lt;br /&gt;
: + Added: Tab characters can be inserted into dialog boxes easily.&lt;br /&gt;
: + Added tools: Reverse Text, Reverse Lines and Translate Characters.&lt;br /&gt;
: + Added: Saving of extended clipboards content.&lt;br /&gt;
: + Added: Warning that file length differs from loaded text length.&lt;br /&gt;
: + Added: Warning about Text Limit value.&lt;br /&gt;
: + Added tools: Enclose selection, Quote text.&lt;br /&gt;
: + Added: Save settings between sessions (Window position, Status bar, ...).&lt;br /&gt;
: + Added: Text Limit value -&amp;gt; Unlimited text size possibility.&lt;br /&gt;
: Changes against version 2.4.&lt;br /&gt;
&lt;br /&gt;
; Version 2.4 (Jul 24, 2002)&lt;br /&gt;
: * This version was something like the original Windows Notepad; with a status bar and nine extended clipboards; with text case conversion tools and UNICODE/UNIX/Win compatibility. It was full of hotkeys and dreams... Dreams to be implemented.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=6007</id>
		<title>Template:Manversionx</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=6007"/>
		<updated>2021-11-30T23:31:30Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{manversiony|{{{1}}}}}&lt;br /&gt;
 | 6.3.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | '''You see work in progress here; this section already reflects future TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].&amp;lt;br&amp;gt;This section may contain incomplete, premature, or mistaken information, prone to change without notice.'''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversiony&amp;diff=6006</id>
		<title>Template:Manversiony</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversiony&amp;diff=6006"/>
		<updated>2021-11-30T23:31:26Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{{1}}}&lt;br /&gt;
 | 6.0.0.16 = 6.3.1.0&lt;br /&gt;
 | 6.0.0.17 = 6.3.1.0&lt;br /&gt;
 | 6.0.2.0 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.2 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.3 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.4 = 6.3.1.0&lt;br /&gt;
 | 6.1.1.0 = 6.3.1.0&lt;br /&gt;
 | 6.2.1.0 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.8 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.9 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.10 = 6.3.1.0&lt;br /&gt;
 | 6.3.1.0 = 6.3.1.0&lt;br /&gt;
 | {{{1}}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=ChangeLog&amp;diff=6003</id>
		<title>ChangeLog</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=ChangeLog&amp;diff=6003"/>
		<updated>2021-11-30T23:25:18Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This listing describes all major changes between previous versions of TED Notepad.&lt;br /&gt;
Minor changes that did not affect difference between major versions listed here are omitted.&lt;br /&gt;
&lt;br /&gt;
; Version 6.3.1 (to be released; check out the release candidate)&lt;br /&gt;
: {{todo|update release date aftr release}}&lt;br /&gt;
: + Added: Memory-optimized document loading, able to load files up to 700MB long.&lt;br /&gt;
: + Added: Memory-optimized document saving, able to save files up to 800MB long.&lt;br /&gt;
: + Added: More detailed progress shown while loading big files.&lt;br /&gt;
: + Added: Large document saving shows progress.&lt;br /&gt;
: + Added: Detect and highlight URLs.&lt;br /&gt;
: + Added: Option to set the color for detected URLs.&lt;br /&gt;
: + Added: Launch selected URL in the Right-click menu.&lt;br /&gt;
: + Added: Web Search Selection in the Right-click menu.&lt;br /&gt;
: + Added: Visible spaces.&lt;br /&gt;
: + Added: Non-breaking spaces drawn differently from breaking spaces.&lt;br /&gt;
: + Added: Session on Top (i.e. Stay on Top for the current window only).&lt;br /&gt;
: + Added: Cut Append to Clipboard.&lt;br /&gt;
: + Added: Copy Append to Clipboard.&lt;br /&gt;
: + Added: Export settings to file.&lt;br /&gt;
: + Added: Import settings from file.&lt;br /&gt;
: + Added: Setting to change the saving period timer for autosave.&lt;br /&gt;
: + Added: Setting to auto-detect Unicode files without BOM by applying statistical analysis.&lt;br /&gt;
: + Added: Setting to auto-revert without asking when file is modified from outside.&lt;br /&gt;
: + Added: Setting to automatically flush file buffers upon Save.&lt;br /&gt;
: + Added: Setting to automatically delete the backup file after successful saving.&lt;br /&gt;
: + Added: Setting to Keep Escapes on if possible when suggesting selection to the Find dialog.&lt;br /&gt;
: + Added: Setting to use the main font in the Compare tool dialog.&lt;br /&gt;
: + Added: Setting for the Color of the Wrap Margin.&lt;br /&gt;
: + Added: Clear All Undo Steps in the Utility Info dialog.&lt;br /&gt;
: + Added: Compact Editbox memory usage in the Utility Info dialog.&lt;br /&gt;
: + Added: Clear Recent Files from Recent Files menu.&lt;br /&gt;
: + Added: Open Containing Folder, i.e. folder with current document.&lt;br /&gt;
: + Added: Open Command Line at the Containing Folder.&lt;br /&gt;
: + Added: Menu hints describing individual functions for convenience.&lt;br /&gt;
: + Added: Favourite files menu shows a separator if a dash &amp;quot;-&amp;quot; is specified.&lt;br /&gt;
: + Added: Replace pattern \L&amp;amp; to add the length of the whole match.&lt;br /&gt;
: + Added: Replace pattern \L1..9 to add the length of the given captured group.&lt;br /&gt;
: + Added: Replace pattern \L+ to add the length of the last successfull captured group.&lt;br /&gt;
: + Added: Replace pattern \#d to add decimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#x to add lowercase hexadecimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#X to add uppercase hexadecimal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#b to add binary number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \#o to add octal number of the current replacement.&lt;br /&gt;
: + Added: Replace pattern \*d to add a random decimal number.&lt;br /&gt;
: + Added: Replace pattern \*x to add a random lowercase hexadecimal number.&lt;br /&gt;
: + Added: Replace pattern \*X to add a random uppercase hexadecimal number.&lt;br /&gt;
: + Added: Replace pattern \*b to add a random binary number.&lt;br /&gt;
: + Added: Replace pattern \*o to add a random octal number.&lt;br /&gt;
: + Added: Command line parameter /E that jumps to the end of the document.&lt;br /&gt;
: + Added: Command line parameter /v that pastes the Clipboard into the document after opening.&lt;br /&gt;
: + Added: Command line parameter /T that turns on Session on Top.&lt;br /&gt;
: + Added: Command line parameter /m that starts the session minimized.&lt;br /&gt;
: + Added: Command line parameter /M that starts the session maximized.&lt;br /&gt;
: + Added: Command line parameter /F that starts the session in Fullscreen.&lt;br /&gt;
: + Added: Command line parameter /H that starts the session with Hide to Tray.&lt;br /&gt;
: + Added: Command line parameter /x that starts the window at given position from left.&lt;br /&gt;
: + Added: Command line parameter /y that starts the window at given position from top.&lt;br /&gt;
: + Added: Command line parameter /w that starts the window with given width.&lt;br /&gt;
: + Added: Command line parameter /h that starts the window with given height.&lt;br /&gt;
: + Added: Command line parameter /A that opens the command line file as ANSI.&lt;br /&gt;
: + Added: Command line parameter /W that opens the command line file as UNICODE.&lt;br /&gt;
: + Added: Command line parameter /U that opens the command line file as UTF-8.&lt;br /&gt;
: + Added: Command line parameter /nf that specifies the file to be loaded.&lt;br /&gt;
: + Added: Command line parameter /nw that ignores unknown command line parameters.&lt;br /&gt;
: + Added: Command line parameter /nn that ignores the next command line string.&lt;br /&gt;
: + Added: Command line parameter /nm that terminates the command line.&lt;br /&gt;
: + Added: Command line parameter //p that resets the saved window position in Config.&lt;br /&gt;
: + Added: Command line parameter //s that resets the saved window size in Config.&lt;br /&gt;
: + Added: Command line parameter /? that launches the Online Manual.&lt;br /&gt;
: - Fixed: Autosave directly to original file.&lt;br /&gt;
: - Fixed: Saving modified documents while loading new documents.&lt;br /&gt;
: - Fixed: Missing Ctrl+Shift+Z hotkey added for Redo.&lt;br /&gt;
: - Fixed: Unindent multiple spaces when Insert Spaces instead of Tab is turned on.&lt;br /&gt;
: - Fixed: Save Checked now button in Settings dialog no longer saves greyed-out categories.&lt;br /&gt;
: - Fixed: Restore Defaults button in Settings dialog re-applies Cascading Portable INI files.&lt;br /&gt;
: - Fixed: Restore Defaults button in Settings dialog re-applies Status bar, Word Wrap, Placement, etc.&lt;br /&gt;
: - Fixed: Chosen categories of Settings are saved into Config after being previously unchosen.&lt;br /&gt;
: - Fixed: Unsaved document is automatically saved before execution of filter with %F variable.&lt;br /&gt;
: - Fixed: Filters always create stdin/stdout/stderr pipes, even with %F variable.&lt;br /&gt;
: - Fixed: Filters can push input and capture output even with %F variable.&lt;br /&gt;
: - Fixed: Filters can run &amp;quot;cmd.exe /c %~F&amp;quot; without crashing cmd.exe.&lt;br /&gt;
: - Fixed: Warning when filters are used with characters, which cannot be converted to as ANSI.&lt;br /&gt;
: - Fixed: Warning when filters produce characters, which cannot be converted back (to non-unicode version).&lt;br /&gt;
: - Fixed: All newlines are converted to Win type before they are sent to Filters.&lt;br /&gt;
: - Fixed: Binary characters (i.e. null character) are replaced with spaces before they are sent to filters.&lt;br /&gt;
: - Fixed: Reading multi-byte characters from Filters improved.&lt;br /&gt;
: - Fixed: Word Wrapping after Hyphens and Zero Width Spaces and Joiners.&lt;br /&gt;
: - Fixed: Not Word Wrapping after No-break Spaces and Joiners.&lt;br /&gt;
: - Fixed: Fixed text rewrapping sweeps upon loading big files.&lt;br /&gt;
: - Fixed: Fixed text rewrapping sweeps upon replacing lots of lines.&lt;br /&gt;
: - Fixed: Handling horizontal mouse wheel.&lt;br /&gt;
: - Fixed: Page Up and Page Down movement with very short windows.&lt;br /&gt;
: - Fixed: Switch to already opened document, while the other window is minimized.&lt;br /&gt;
: - Fixed: Mimic case in the Extended Replace tool.&lt;br /&gt;
: - Fixed: Extended Replace tool and Replace all: Regexp zero-length find and replace loop.&lt;br /&gt;
: - Fixed: Running Text Filter from Search and Tool.&lt;br /&gt;
: - Fixed: Aborting Search and Tool short-circuits the running Tool, aborting faster.&lt;br /&gt;
: - Fixed: BOM flag in the File menu is enabled only for relevant encodings.&lt;br /&gt;
: - Fixed: Error reported correctly when /p command line parameter is cancelled or fails.&lt;br /&gt;
: - Fixed: Collation and copies are left to be handled by the printer drivers due to &amp;quot;known OS issues&amp;quot;.&lt;br /&gt;
: * Selecting upwards from the first line more user-friendly by moving to the beginning of the first line.&lt;br /&gt;
: * Selecting downwards from the last line more user-friendly by moving to the end of the last line.&lt;br /&gt;
: * Optimized and improved text drawing, drawing very long lines, using drawing cache, etc.&lt;br /&gt;
: * Optimized and improved drawing binary characters, word-wrapping on binary files, etc.&lt;br /&gt;
: * Progress shown while painting long lines.&lt;br /&gt;
: * Positioning caret within ligatures improved.&lt;br /&gt;
: * More progress shown while loading huge files.&lt;br /&gt;
: * Settings dialog now says System Registry when the Config is stored in System Registry.&lt;br /&gt;
: * Added messages around file recovery from an autosave to navigate the user through the recovery.&lt;br /&gt;
: * View All Clips a little bit more accessibility-friendly and keyboard-only friendly.&lt;br /&gt;
: * Moving caret to the left by whole words is now slightly more granular.&lt;br /&gt;
: * Search Later shows a message in the Status Bar when Search is updated.&lt;br /&gt;
: * Search and Last Tool All also shows the total number of replacements.&lt;br /&gt;
: * The application now complains about unknown command line parameters.&lt;br /&gt;
: * File Properties moved to File -&amp;gt; System sub-menu.&lt;br /&gt;
: * Up to Sentences tool renamed to Make Sentences.&lt;br /&gt;
: * Save'n'Exit renamed to Save and Exit.&lt;br /&gt;
: * Increased maximum pattern size in Grep tool to 64 KiB.&lt;br /&gt;
: * Increased maximum pattern size in Find And Replace to 64 KiB.&lt;br /&gt;
: * Increased maximum pattern size in Extended Replace tool to 64 KiB.&lt;br /&gt;
: * Increased maximum string size in Compare tool to 64 KiB.&lt;br /&gt;
: * Raised the &amp;quot;Clip too long&amp;quot; warning threshold to 64 KiB.&lt;br /&gt;
: * Wrap Margin is turned on by default.&lt;br /&gt;
: * Line Numbers are turned on by default.&lt;br /&gt;
: * Some menu mnemonics were updated.&lt;br /&gt;
: * Reduced icon sizes.&lt;br /&gt;
: Changes against version 6.2.1.&lt;br /&gt;
&lt;br /&gt;
; Version 6.2.1 (Aug 22, 2019)&lt;br /&gt;
: + Added: Text Coloring.&lt;br /&gt;
: + Added: Grep, Filter lines by Pattern tool.&lt;br /&gt;
: + Added: Visually highlight Current Line.&lt;br /&gt;
: + Added: Length of the Current Selection shown in the Status bar.&lt;br /&gt;
: + Added: Visible newlines based on actual newlines.&lt;br /&gt;
: + Added: Visible Tabs.&lt;br /&gt;
: * Optimized drawing long lines and lines containing surrogates, composite characters, clusters.&lt;br /&gt;
: * Left margin no longer obscures text shifted to the left by horizontal scroll.&lt;br /&gt;
: * Added hint to Replace All Abort dialog suggesting Extended Replace tool instead.&lt;br /&gt;
: * Changed default value for File size warning setting to 10MiB.&lt;br /&gt;
: - Fixed: Undoing all changes makes the document unmodified.&lt;br /&gt;
: - Fixed: Unicode and non-unicode version no longer share the same config when storing strings.&lt;br /&gt;
: - Fixed: Preventing one file operation to run within another one, e.g. auto-save while loading a document.&lt;br /&gt;
: - Fixed: Including an empty file no longer changes current document's newlines.&lt;br /&gt;
: - Fixed: Drag-and-drop editing and Right-click on a single-character selection no longer impossible.&lt;br /&gt;
: - Fixed: Longer lines were not fully drawn with larger fonts due to limitations in Windows API.&lt;br /&gt;
: - Fixed: Default font size, printing font size, and font sizing algorithms, better DPI aware-ness.&lt;br /&gt;
: - Fixed: Line lengths are no longer jumping back and forth when selecting lines.&lt;br /&gt;
: - Fixed: Resizing window height recalculates potentially changing size of the horizontal scrollbar.&lt;br /&gt;
: - Fixed: Horizontal scrolling no longer recalculates horizontal scrollbar.&lt;br /&gt;
: - Fixed: Printing leading line tabs with non-zero left page margin.&lt;br /&gt;
: - Fixed: Replacing text unnecessarily redrawing following lines.&lt;br /&gt;
: - Fixed: Tab size visual extent rendering.&lt;br /&gt;
: - Fixed: Replace tool zero-length matching after non-zero-length matches.&lt;br /&gt;
: - Fixed: Partial loading of files over 4GB large.&lt;br /&gt;
: - Fixed: Partial UTF-8 BOM recognition.&lt;br /&gt;
: Changes against version 6.1.1. &lt;br /&gt;
&lt;br /&gt;
; Version 6.1.1 (Dec 4, 2016)&lt;br /&gt;
: + Added: Support for IME composing window.&lt;br /&gt;
: + Added: Added support for DPI-aware scaling.&lt;br /&gt;
: + Added: Push Line Up and Push Line Down for moving lines around.&lt;br /&gt;
: + Added: Drag&amp;amp;Drop editing; moving text by mouse is available via both buttons.&lt;br /&gt;
: + Added: Setting: Auto-save Untitled documents (into the Temp path).&lt;br /&gt;
: + Added: Setting: Store auto-save files in the Temp path instead of current directory.&lt;br /&gt;
: + Added: Setting: Store backup files in the Temp path instead of current directory.&lt;br /&gt;
: + Added: Setting: Temp path for storing autosave and backup files to, with relative paths support.&lt;br /&gt;
: + Added: Setting: Create backup files with hidden attribute.&lt;br /&gt;
: + Added: Setting: Create multiple backup files and rotate them.&lt;br /&gt;
: + Added: Setting: Warn on loading binary files.&lt;br /&gt;
: + Added: Setting: Ignore case in quick Sort tools.&lt;br /&gt;
: + Added: Check for Updates and Automatic Check for updates.&lt;br /&gt;
: + Added: If there is a new version available, hint is displayed in the StatusBar.&lt;br /&gt;
: + Added: Command line parameter: /u Check for Updates.&lt;br /&gt;
: + Added: Command line parameter: /l Go to Line accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameter: /c Go to Offset accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameter: /s Set Selection accepts negative numbers and works from the end of the document.&lt;br /&gt;
: + Added: Command line parameters: /l Go to Line and /c Go to Offset can be used together.&lt;br /&gt;
: - Fixed: Italics fonts are no longer clipped.&lt;br /&gt;
: - Fixed: Selection background does not clip nearby characters anymore.&lt;br /&gt;
: - Fixed: Each tab character now enforces at least some minimum visual extent.&lt;br /&gt;
: - Fixed: Selected end-of-line extent and visible end-of-line extent were unified.&lt;br /&gt;
: - Fixed: When switching to another instance of the same document, no unexpected questions are asked anymore.&lt;br /&gt;
: - Fixed: Message about another instance of the same document takes precedence over message about lost auto-save found.&lt;br /&gt;
: - Fixed: Document is not auto-saved if there are no modifications since last auto-save.&lt;br /&gt;
: - Fixed: The user is now warned that it is necessary to save recovered document.&lt;br /&gt;
: - Fixed: Auto-save file was not always removed after successful recovery.&lt;br /&gt;
: - Fixed: Canceling Revert operation no longer removes current auto-save.&lt;br /&gt;
: - Fixed: Chosen encoding or code page is no longer reset during Revert.&lt;br /&gt;
: - Fixed: Overwrite flag is no longer reset during Revert or Re-open.&lt;br /&gt;
: - Fixed: Creating a new file during loading adds such new file to Recent files.&lt;br /&gt;
: - Fixed: Relative paths are supported for Template file and are not updated during loading.&lt;br /&gt;
: - Fixed: Changing current encoding also changes BOM flag to reasonable default.&lt;br /&gt;
: - Fixed: Default newlines are used upon no newlines in the loaded file.&lt;br /&gt;
: - Fixed: Default newlines are used upon mixed newlines in the loaded file when No mixed newlines setting is in force.&lt;br /&gt;
: - Fixed: Default newlines are used upon mixed newlines in the document if No mixed newlines setting is turned on.&lt;br /&gt;
: - Fixed: Lists of available codepages split into categories for easier navigation.&lt;br /&gt;
: - Fixed: Shift+BackSpace deletes previous character just like a simple BackSpace.&lt;br /&gt;
: - Fixed: Insert Recently Inserted text was needlessly unavailable sometimes.&lt;br /&gt;
: - Fixed: Sorted Complete Word dialog was inserting incorrect suggestions.&lt;br /&gt;
: - Fixed: Right-click menu could appear on a wrong position upon several displays.&lt;br /&gt;
: - Fixed: Scrolling by mouse via selecting text outside of edit window has been slowed down.&lt;br /&gt;
: - Fixed: Message is displayed after successful replace and no further occurrences.&lt;br /&gt;
: - Fixed: Replace tool used empty string upon undefined back-references, even when the user chose to skip such occurrences.&lt;br /&gt;
: - Fixed: Propper icon recovery while re-starting crashed Windows Explorer.&lt;br /&gt;
: - Fixed: Keyboard focus was not relinquished properly upon Hide to Tray.&lt;br /&gt;
: - Fixed: Saving widnows position and/or size and restoring them was reviewed.&lt;br /&gt;
: - Fixed: Config INI file is only updated upon actual changes in the config data.&lt;br /&gt;
: - Fixed: Some funky edge cases were fixed in various tools and features.&lt;br /&gt;
: * Esc key cancels any ongoing mouse operation.&lt;br /&gt;
: * Right-click can also be used to select text before the Right-click menu appears.&lt;br /&gt;
: * Paste from clipboard thru Ctrl+Right-click occurs only upon releasing the button.&lt;br /&gt;
: * Selected lines are slightly accentuated by double-drawing the text.&lt;br /&gt;
: * ODO meter and Trip meter were added to the Utility info dialog for amusement.&lt;br /&gt;
: * Overwrite mode menu item added to Options menu for convenience.&lt;br /&gt;
: * Date/time glue setting moved from the Tools page to the General page.&lt;br /&gt;
: * Warning is show in the Status Bar upon saving Unicode file with no BOM.&lt;br /&gt;
: * Document title is always displayed in the taskbar and caption, even if also showing the full file path.&lt;br /&gt;
: * Stay on Top is saved along with other common options in the Basic Options category.&lt;br /&gt;
: * Newlines are now decoded in Could not find messages; with a new setting to disable this.&lt;br /&gt;
: * Progress percentage during re-wrap has been rewritten to give a more linear user experience.&lt;br /&gt;
: * The .reloc section was removed from executables in a hope all future Windows will accomodate.&lt;br /&gt;
: * Executable code was moved back to the .text section where it belongs.&lt;br /&gt;
: * Read-only data was moved back to the .rdata section where it belongs.&lt;br /&gt;
: * Text storage engine improved to support files with truckload of lines.&lt;br /&gt;
: * Text storage engine memory usage and general behaviour optimized.&lt;br /&gt;
: * Edit box behaviour and other code optimized.&lt;br /&gt;
: * Utf-8 recognition algorithm fortified.&lt;br /&gt;
: Changes against version 6.0.2. &lt;br /&gt;
&lt;br /&gt;
; Version 6.0.2 (Nov 30, 2011)&lt;br /&gt;
: - Fixed: Initialization of Random number generator in multi-threaded tools.&lt;br /&gt;
: Changes against version 6.0.1. &lt;br /&gt;
&lt;br /&gt;
; Version 6.0.1 (Nov 2, 2011)&lt;br /&gt;
: This version is a complete rewrite of the entire project. Small changes might be left out by omission.&lt;br /&gt;
: + Search and Replace dialog replaced by Search Bar.&lt;br /&gt;
: + Added: Support for Escapes and Regular Expressions in search/replace patterns.&lt;br /&gt;
: + Added: Experimental Search and Last Tool concept. Similar to Search and Replace.&lt;br /&gt;
: + Added: Long searches automatically display an abort dialog.&lt;br /&gt;
: + Added: Option to Mimic Case upon Search and Replace.&lt;br /&gt;
: + Added: Auto-search for current word upon no selection in Find Selected.&lt;br /&gt;
: + Added: Extended Replace also supports Escapes, RegExps and Mimic Case.&lt;br /&gt;
: + Added: Support for user-defined color of text and background.&lt;br /&gt;
: + Added: Random Color Scheme generator in Settings dialog.&lt;br /&gt;
: + Added: Display Line Numbers, Newlines and Line Lengths.&lt;br /&gt;
: + Added: ZoomIn, ZoomOut, ZoomReset.&lt;br /&gt;
: + Added: Auto-recognition of UTF-8 files without BOM.&lt;br /&gt;
: + Added: Import/Export/Reopen file in chosen encoding or codepage.&lt;br /&gt;
: + Added: Full transparent support for binary files (load+edit+save).&lt;br /&gt;
: + Added: Full transparent support for mixed newlines (load+edit+save).&lt;br /&gt;
: + Added: Command line parameter: /b Skips the &amp;quot;Create new file&amp;quot; question.&lt;br /&gt;
: + Added: Option to auto-save documents directly to their original files.&lt;br /&gt;
: + Added: Option to create recovery auto-save files with hidden attribute.&lt;br /&gt;
: + Added: Question, whether to auto-load a lost auto-save version of a file.&lt;br /&gt;
: + Added: Question about saving before closing is skipped for empty Untitled documents.&lt;br /&gt;
: + Added: Favourite files now support relative paths.&lt;br /&gt;
: + Added: Template file for new documents.&lt;br /&gt;
: + Added: Shuffle Lines tool.&lt;br /&gt;
: + Added: First Capital, Random Case and Fun Case tools.&lt;br /&gt;
: + Added: Unclose Lines, Trim Empty Lines and Shift Lines Right tool.&lt;br /&gt;
: + Added: Collapse Empty Lines tool.&lt;br /&gt;
: + Added: Unwrap Lines tool.&lt;br /&gt;
: + Added: Extract Words tool.&lt;br /&gt;
: + Added: Most tools are now showing their progress and support cancel.&lt;br /&gt;
: + Added: Classic old system edit control replaced by new improved editbox.&lt;br /&gt;
: + Added: Text storage engine with improved support for working with huge files.&lt;br /&gt;
: + Added: Support for very long lines (current limit is set to 1 MiB).&lt;br /&gt;
: + Added: Multi-level Undo and Redo. Better Undo granularity.&lt;br /&gt;
: + Added: Legacy single-level Undo still available through Alt+BkSpace.&lt;br /&gt;
: + Added: More sensitive navigation through entire words.&lt;br /&gt;
: + Added: Support for Triple/Quadruple/Quintuple-click and mouse selecting.&lt;br /&gt;
: + Added: Option to auto-Copy to clipboard upon mouse selection.&lt;br /&gt;
: + Added: Paste/Swap from clipboard upon mouse Ctrl-Right-click.&lt;br /&gt;
: + Added: Option to Mimic Case upon Paste from clipboard.&lt;br /&gt;
: + Added: Option to auto-select current word/line/paragraph/document upon empty Copy/Cut.&lt;br /&gt;
: + Added: Insert Recently Inserted and Recently Deleted text.&lt;br /&gt;
: + Added: Support for Smart Home and End keys, working with indentation&lt;br /&gt;
: + Added: Support for moving/selecting by entire paragraphs.&lt;br /&gt;
: + Added: Option to keep distance between the Caret and window borders.&lt;br /&gt;
: + Added: Improved and enriched Right-click menu.&lt;br /&gt;
: + Added: Support for Insert/Overwrite mode.&lt;br /&gt;
: + Added: Horizontal mouse-wheel scrolling.&lt;br /&gt;
: + Added: Improved INI files for saving settings into Config.&lt;br /&gt;
: + Added: Support for hierarchical INI file loading.&lt;br /&gt;
: + Added: Command line parameter: /i Load specified INI file&lt;br /&gt;
: + Added: Location of current INI file added to Settings dialog.&lt;br /&gt;
: + Added: Printing font.&lt;br /&gt;
: + Added: Page Setup for printing.&lt;br /&gt;
: + Added: Check Updates shortcut.&lt;br /&gt;
: + Added: Sort tool: Up to five independent sorting keys available.&lt;br /&gt;
: + Added: Sort tool: Range of columns can be specified in each sorting key.&lt;br /&gt;
: + Added: Sort tool: Option to ignore white-spaces and/or punctuation while sorting.&lt;br /&gt;
: + Added: Sort tool: Option to ignore all but alpha-numeric characters while sorting.&lt;br /&gt;
: + Added: Sort tool: Option to ignore blank and/or control characters while sorting.&lt;br /&gt;
: + Added: Sort tool: Options to ignore characters supported even while sorting as numbers.&lt;br /&gt;
: + Added: Sort tool: Uses current user locale settings while sorting as numbers.&lt;br /&gt;
: + Added: Sort tool: Support for positive signs while sorting as numbers.&lt;br /&gt;
: * Modif: Sort tool: Sorting keys no longer depend on previous keys.&lt;br /&gt;
: + Added: Columns and Sort tools: Option to &amp;quot;delimit by entire phrase&amp;quot; rather than &amp;quot;separate characters&amp;quot;.&lt;br /&gt;
: + Added: Columns and Sort tools: Options for saving info from tool dialogs into the Config.&lt;br /&gt;
: * Modif: Columns and Sort tools: Tool dialogs accept ranges and columns inverted.&lt;br /&gt;
: + Added: Columns tool: Random number insertion point (%r).&lt;br /&gt;
: * Modif: Columns tool: Center alignment modifier changed from ^ to !.&lt;br /&gt;
: + Added: Translate Charaters tool: Supports escapes and ranges.&lt;br /&gt;
: + Added: XmlTag tool: Works more carefully with singleline/multiline selections.&lt;br /&gt;
: * Modif: XmlTag tool: Reselects the original selection after enclosing it.&lt;br /&gt;
: + Added: XmlTag tool: Option to keep or reset fields &amp;quot;Attributes&amp;quot; and &amp;quot;Empty&amp;quot;.&lt;br /&gt;
: + Added: Compare tool: State of checkboxes from tool dialog are saved into Config.&lt;br /&gt;
: + Added: Compare tool: Option for saving the compared strings into Config as well.&lt;br /&gt;
: + Added: Filters: New variable %S, which expands with current selection.&lt;br /&gt;
: + Added: Filters: Option to convert all text to/from UTF-8.&lt;br /&gt;
: + Added: Filters: Option to push no input (stdin) into filter.&lt;br /&gt;
: + Added: Filters: Option to ignore output (stdout/stderr) from filter.&lt;br /&gt;
: + Added: Filters: Option to mix output (stdout/stderr) from filter together.&lt;br /&gt;
: + Added: Filters: Option to display filter output as message instead of replacing.&lt;br /&gt;
: + Added: Filters: Option to auto-exit when filter is finished.&lt;br /&gt;
: + Added: Filters: Option to skip saving upon auto-exit when filter is finished.&lt;br /&gt;
: + Added: Filters: Option to ignore filter's return value.&lt;br /&gt;
: + Added: Filters: Option to wait for filter to finish.&lt;br /&gt;
: + Added: Filters: Option to skip the launch dialog.&lt;br /&gt;
: + Added: Filters: Quoting variable modifiers, which escape all double-quotes while expanding.&lt;br /&gt;
: + Added: Search and Replace All feature groups Undo steps into one Undo step.&lt;br /&gt;
: + Added: Search and Replace All feature shows total count of replacements in the Status Bar.&lt;br /&gt;
: + Added: Progress and info messages displayed in the Status Bar during most operations.&lt;br /&gt;
: + Added: Undo feature can now remember the last document save-point.&lt;br /&gt;
: + Added: Double-clicks on the Status Bar supported (as shortcuts to anticipated actions).&lt;br /&gt;
: + Added: Word Wrap indicator in the Status Bar.&lt;br /&gt;
: + Added: Current character value in the Status Bar.&lt;br /&gt;
: + Added: Suggest filename from first line supports longer filenames.&lt;br /&gt;
: + Added: Suggest filename from first line now works also in Exclude File feature.&lt;br /&gt;
: + Added: Option to confirm with user whether to exit by Esc key.&lt;br /&gt;
: + Added: Option to prevent insertion of control characters.&lt;br /&gt;
: + Added: Option to show bold Caret upon Overwrite mode.&lt;br /&gt;
: + Added: Option to improve definition of what a word consists of.&lt;br /&gt;
: + Added: Option to Indent selection (of multiple lines) with simple Tab key.&lt;br /&gt;
: + Added: Option to reduce Undo steps to the last single step upon Save.&lt;br /&gt;
: + Added: Option to persist current scrolling during tools.&lt;br /&gt;
: + Added: Option to auto-hide the Search Bar after it has been used.&lt;br /&gt;
: + Added: Option to auto-hide the Search Bar only after a successful use.&lt;br /&gt;
: + Added: Options to reset/keep specific search attributes in the Search Bar.&lt;br /&gt;
: + Added: Option to execute search as non-abortable (for compatibility).&lt;br /&gt;
: + Added: Option to execute all tools as non-abortable (for compatibility).&lt;br /&gt;
: + Added: Option to warn, when a file being loaded is bigger than a specific value.&lt;br /&gt;
: + Added: Support for overriding user locale settings (number formats, date/time formats).&lt;br /&gt;
: + Added: Many more settings and options to subtly adjust behaviour of features.&lt;br /&gt;
: - Fixed: Malformed UTF-8 files could cause loading troubles.&lt;br /&gt;
: - Fixed: Save As dialog allows read-only files when read-only files can be forced.&lt;br /&gt;
: - Fixed: Save As dialog no longer changes current working directory on the way.&lt;br /&gt;
: - Fixed: Switch to already opened document, while the other document's window is in tray.&lt;br /&gt;
: - Fixed: Troubles with changing the opened-and-watched-for-modifications file too rapidly.&lt;br /&gt;
: - Fixed: The opened-and-watched-for-modifications file no longer share-locked unnecessarily.&lt;br /&gt;
: - Fixed: Statistics tool: Average line length computed over non-empty lines only.&lt;br /&gt;
: - Fixed: Statistics tool: Line lengths (avg/min/max) ignore tail white-spaces.&lt;br /&gt;
: - Fixed: Unique Lines tool: Duplicates of empty lines not counted upon Leave empty lines.&lt;br /&gt;
: - Fixed: Unique Lines tool: Improved algorithm used in the tool (bug with quadratic impact).&lt;br /&gt;
: - Fixed: SysTray icon reappears after explorer/taskbar crash and recreation.&lt;br /&gt;
: * Improved and more user-friendly Go to dialog.&lt;br /&gt;
: * Statistics tool dialog supports copying of the values into clipboard.&lt;br /&gt;
: * Settings dialog now remembers the last active tab for convenience.&lt;br /&gt;
: * All tools working with selection can now auto-select word/line/paragraph/document.&lt;br /&gt;
: * Changing document Encoding or Newlines makes the document modified.&lt;br /&gt;
: * Old Margin Bar renamed to Wrap Margin. It soft-wraps lines upon Word Wrap.&lt;br /&gt;
: * Message &amp;quot;Search pattern not found!&amp;quot; now includes the search pattern.&lt;br /&gt;
: * Current selection and scrolling try to persist Search and Replace All operation.&lt;br /&gt;
: * Search and Replace All draws all changes at once if there is no idle CPU.&lt;br /&gt;
: * Undo is available in the Search Bar, when selection is pre-filled as new pattern.&lt;br /&gt;
: * Ability to define and use the Second Search through the Search Bar.&lt;br /&gt;
: * Longer patterns (up to 8 KiB) allowed in the Search Bar.&lt;br /&gt;
: * The selection is reversed upon searching upwards.&lt;br /&gt;
: * Word Wrap rewraps the line being edited correctly, including previous word.&lt;br /&gt;
: * Better maintenance of current scrolling and selection upon reverting the document.&lt;br /&gt;
: * Better maintenance of current scrolling upon rewrapping lines of the document.&lt;br /&gt;
: * Horizontal Scroll Bar tries to be a bit smarter and less resource consuming.&lt;br /&gt;
: * Quote Mail tool removed.&lt;br /&gt;
: * Few hotkeys modified or switched between functions.&lt;br /&gt;
: * Tools sub-menu and Edit sub-menu rearranged a bit. All dialogs improved.&lt;br /&gt;
: * Defaults for some of the settings modified to fit the new capabilities.&lt;br /&gt;
: * Few config names changed or moved to prevent sharing with old versions.&lt;br /&gt;
: * Core memory-handling and text-processing routines improved.&lt;br /&gt;
: * Non-linear generator of pseudo-random numbers used in tools.&lt;br /&gt;
: * Default fonts changed to Courier New and Arial.&lt;br /&gt;
: * New application icon introduced.&lt;br /&gt;
: Changes against version 5.4.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.4.2 (Jun 17, 2009)&lt;br /&gt;
: - Fixed: Invalid characters in Suggest filename from first line.&lt;br /&gt;
: Changes against version 5.4.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.4.1 (Apr 30, 2009)&lt;br /&gt;
: + Added: Fullscreen mode.&lt;br /&gt;
: + Added: Spawn New Window feature.&lt;br /&gt;
: + Added: Option for Longest completion in Complete Word feature.&lt;br /&gt;
: + Added: Option for Ignore case in Complete Word feature.&lt;br /&gt;
: + Added: Option to rotate the Search over the edge of the document.&lt;br /&gt;
: - Fixed: Favorites menu not numbered with accelerator keys.&lt;br /&gt;
: - Fixed: Unique Lines and Unique Lines with Ignore case interchanged.&lt;br /&gt;
: - Fixed: Number of Favorites menu items unnecessarily limited to 10.&lt;br /&gt;
: - Fixed: Could not Delete Line when there was only one line left in the document.&lt;br /&gt;
: - Fixed: Remove Empty Lines tool, which could result in crash.&lt;br /&gt;
: * Size of the printing font and printing margins modified.&lt;br /&gt;
: * When a loaded file has no newlines, the default newline type is assumed.&lt;br /&gt;
: * When a loaded file is empty (zero length), the default encoding is assumed.&lt;br /&gt;
: * XML/HTML Tag tool adds newlines to the content, if used on multiple lines.&lt;br /&gt;
: * Recent Files recollection option removed from the Settings.&lt;br /&gt;
: Changes against version 5.3.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.3.1 (Apr 18, 2007)&lt;br /&gt;
: + Added: Indent selection is also possible by Tab key. Unindent by Shift+Tab key.&lt;br /&gt;
: + Added: Option to show full path and file name within the caption.&lt;br /&gt;
: + Added: Option to warn upon loading, if the same file is already opened in another window.&lt;br /&gt;
: + Added: Option to watch the opened file and ask for a Revert, when it is changed from outside.&lt;br /&gt;
: + Added: Option to auto-save the document every 5 minutes to a temporary recovery file.&lt;br /&gt;
: + Added: Option to keep the file name even when the loading has failed (for advanced users).&lt;br /&gt;
: + Added: Option to save UTF-8/Unicode files without the leading BOM (for advanced users).&lt;br /&gt;
: + Added: Option to load UTF-8/Unicode files without the leading BOM (for advanced users).&lt;br /&gt;
: + Added: Option about the default path for Open/Save dialogs.&lt;br /&gt;
: + Added: Option to force saving of read-only files.&lt;br /&gt;
: + Added: Support for saving of hidden/system files.&lt;br /&gt;
: + Added: Option to use the first line as a Filename instead of Untitled.&lt;br /&gt;
: + Added: Option to create backup files.&lt;br /&gt;
: + Added: Select Line feature.&lt;br /&gt;
: + Added: Date/Time and Long Date/Time tools.&lt;br /&gt;
: - Fixed: Statistics tool calculated values with active word wrapping.&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was half-broken.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: - Fixed: While saving filters/favourites into the Registry, old values were not deleted.&lt;br /&gt;
: * Filter dialog is skipped, when no parameters are required for an invoked filter.&lt;br /&gt;
: * Complete word dialod is skipped, when there is only one possible completion.&lt;br /&gt;
: * BkSpace/Delete/Truncate Line features no longer works according to the actual word-wrapping.&lt;br /&gt;
: * While quoting/indenting non-empty lines, only zero-length lines are considered to be empty.&lt;br /&gt;
: * Saving/loading routines rewritten and optimized for better and safer performance.&lt;br /&gt;
: * When unicode characters are loaded in a non-unicode version, warning is displayed.&lt;br /&gt;
: * The selection persists the Revert feature.&lt;br /&gt;
: * Application can also remember, whether the window was maximized upon exit.&lt;br /&gt;
: Changes against version 5.2.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.2.1 (Nov 11, 2006)&lt;br /&gt;
: + Added: Find Later.&lt;br /&gt;
: + Added: XML/HTML Tag tool.&lt;br /&gt;
: + Added: Relative jumping in Go to dialog.&lt;br /&gt;
: + Added: Selecting text in Go to dialog.&lt;br /&gt;
: + Added: Trim Tailing Spaces tool.&lt;br /&gt;
: + Added: Shift Lines Left tool.&lt;br /&gt;
: + Added: Remove Empty Lines tool.&lt;br /&gt;
: + Added: Reverse Words on Line, Reverse Each Line, Reverse Words tools.&lt;br /&gt;
: + Added: New variable (%n) for newlines in Cut Columns tool.&lt;br /&gt;
: - Fixed: Minor bug with Status Bar panel sizes calculation.&lt;br /&gt;
: * Enclose Selection places the caret between its strings, if the selection is empty.&lt;br /&gt;
: Changes against version 5.0.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.0.3 (Jan 11, 2007)&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was broken.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: Changes against version 5.0.1.&lt;br /&gt;
&lt;br /&gt;
; Version 5.0.1 (Jul 12, 2006)&lt;br /&gt;
: + Added: Secondary search.&lt;br /&gt;
: + Added: Copy Similar Line.&lt;br /&gt;
: + Added: Copy Word Above.&lt;br /&gt;
: + Added: Cut Columns tool.&lt;br /&gt;
: + Added: Find Selected.&lt;br /&gt;
: + Added: Both searches are saved, along with other settings.&lt;br /&gt;
: + Added: Full support of storing the settings in a portable INI file.&lt;br /&gt;
: + Added: Full support for Mac newlines. Convert from/to Mac tools.&lt;br /&gt;
: + Added: Insert Tabs as Spaces and automatic Smart Return auto-indentation.&lt;br /&gt;
: + Added: Tabify Indentation and Untabify Indentation tools.&lt;br /&gt;
: + Added: Non-empty lines counter into Statistics dialog.&lt;br /&gt;
: + Added: Delete Line, Truncate Line, BkSpace Line.&lt;br /&gt;
: + Added: Reverse Each Word tool.&lt;br /&gt;
: + Added: Option that leaves empty lines in the Unique Lines tool.&lt;br /&gt;
: + Added: Option that skips white-spaces in Quote/Indent Selection tool.&lt;br /&gt;
: + Added: File modified asterix flag within main window caption.&lt;br /&gt;
: + Added: More Status Bar info: Number of lines, line length and document length.&lt;br /&gt;
: + Added: Insert File Name and Insert File Title tools.&lt;br /&gt;
: + Added: To the next/previous Line, disobeying wordwrapping.&lt;br /&gt;
: + Added: Moveable and hideable Right Margin Bar.&lt;br /&gt;
: + Added: Setting that counts Line numbers unwrapped even in the Status Bar.&lt;br /&gt;
: - Fixed: Continuous whole words matching minor bug fixed.&lt;br /&gt;
: - Fixed: RE clone: Some newline bugs and minor searching bugs fixed.&lt;br /&gt;
: * Smart Return and Copying Return work with last non-empty unwrapped line.&lt;br /&gt;
: * Indent Selection tool does not indent empty lines.&lt;br /&gt;
: * Several features/tools are more compatibile with the Undo feature.&lt;br /&gt;
: * Go to Line and Go to Char command-line parameters are no longer exclusive.&lt;br /&gt;
: * The Tabs as Spaces setting also affects the Indent Selection tool.&lt;br /&gt;
: * Tools converting Unix/Mac newlines no longer work with an entire document.&lt;br /&gt;
: * New Search menu has been created for both searching mechanisms.&lt;br /&gt;
: * Hotkeys of Select Word, Add Word and Complete Word have been changed.&lt;br /&gt;
: * Application is returning negative error codes upon startup troubles.&lt;br /&gt;
: * Several routines have been optimized to achieve better performance.&lt;br /&gt;
: * Sorting tool optimized a bit. All line-oriented tools optimized.&lt;br /&gt;
: Changes against version 4.5.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.5.5 (Jan 04, 2007)&lt;br /&gt;
: + Added: File modified flag is also shown within window caption.&lt;br /&gt;
: + Added: Text limit value is allowed to be zero for no actual limit.&lt;br /&gt;
: + Added: Printing the selection only is available.&lt;br /&gt;
: - Fixed: Saving of 3-byte long UTF-8 characters was broken.&lt;br /&gt;
: - Fixed: Posible memory leaks caused by unhandled realloc failure.&lt;br /&gt;
: - Fixed: Occasional bug in backward searching routine.&lt;br /&gt;
: - Fixed: Printing mechanism has been fixed.&lt;br /&gt;
: - Fixed: Characters recognition is now fully user locale friendly.&lt;br /&gt;
: - Fixed: Find mechanism is now gathering dialog info only when appropriate.&lt;br /&gt;
: * Find/Replace mechanism modified to resemble the default notepad behavior.&lt;br /&gt;
: * Recent files are remembered upon successful file saving.&lt;br /&gt;
: * To open Manual, it has to be in the same directory, as the executable is.&lt;br /&gt;
: Changes against version 4.5.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.5.1 (Jul 1, 2005)&lt;br /&gt;
: + Added: Full UTF-8 files support.&lt;br /&gt;
: + Added: Full Big-endian UNICODE files support.&lt;br /&gt;
: + Added: Swap clipboard and selection (copy and paste together).&lt;br /&gt;
: + Added: Find previous, Select to previous features.&lt;br /&gt;
: + Added: Find/Replace works in both directions with whole word option enabled.&lt;br /&gt;
: + Added: Favourites menu.&lt;br /&gt;
: + Added: Whole words option in Extended Replace.&lt;br /&gt;
: + Added: Delete all other characters option in Translate Characters.&lt;br /&gt;
: + Added: .LOG extension support from Windows Notepad.&lt;br /&gt;
: + Added: File Properties dialog of the current document.&lt;br /&gt;
: + Added: Word wrapping into printing support.&lt;br /&gt;
: + Added: Command line parameter: /p Print.&lt;br /&gt;
: + Added: Printing the selection only.&lt;br /&gt;
: - Fixed: Printing mechanism has been completely rewritten.&lt;br /&gt;
: - Fixed: Window creeped-up when taskbar was located at the top of the screen.&lt;br /&gt;
: - Fixed: RE clone only: Find/Replace mechanism counted newlines incorrectly.&lt;br /&gt;
: * Sorting tool rewritten and optimized a bit. Supports better numbers sorting.&lt;br /&gt;
: * Enclose Selection tool modified. Enclose Selection dialog added.&lt;br /&gt;
: * Replace All mechanism now works with the entire document, as supposed to.&lt;br /&gt;
: * Find/Replace algorithms rewritten and optimized a lot.&lt;br /&gt;
: * Saving, loading and managing of settings modified.&lt;br /&gt;
: * Finally, all read and write share locks were removed.&lt;br /&gt;
: * A warning is raised when conversion from UNICODE to ANSI is not to be lossless.&lt;br /&gt;
: * A question about creating a new file is raised upon opening a missing file.&lt;br /&gt;
: * Some tools allowed on empty selections too.&lt;br /&gt;
: * Assembly-level code optimizations. Speed increased, application size decreased.&lt;br /&gt;
: Changes against version 4.3.1.&lt;br /&gt;
&lt;br /&gt;
; Version 4.3.1 (Sep 14, 2004)&lt;br /&gt;
: + Added: Complete Word.&lt;br /&gt;
: + Added: Select to Next.&lt;br /&gt;
: + Added: Drag &amp;amp; Drop support.&lt;br /&gt;
: + Added: Copying Return.&lt;br /&gt;
: + Added: Revert.&lt;br /&gt;
: + Added: Add Next Word.&lt;br /&gt;
: + Added: Save and Exit as F10 hotkey.&lt;br /&gt;
: + Added: Full binary files support.&lt;br /&gt;
: + Added: Full and transparent UNIX-files support.&lt;br /&gt;
: + Added: Last Used Tool.&lt;br /&gt;
: + Added tools: Unique Lines, Close Lines.&lt;br /&gt;
: + Added tools: Unindent Selection, Unquote Selection.&lt;br /&gt;
: + Added tools: Include From File, Exclude Fo File.&lt;br /&gt;
: + Added tool: Extended Replace. (Without regular expressions. Use grep as a filter.)&lt;br /&gt;
: + Added tool: Filters Architecture. (Simple text-filtering plug-ins architecture.)&lt;br /&gt;
: + Added tool: More options and Show column button added to the Sorting tool dialog.&lt;br /&gt;
: + Added tool: Crc32 sum value to Statistics tool.&lt;br /&gt;
: + Added: Command line parameters: /l Go to line, /c Go to char, /s Set Selection.&lt;br /&gt;
: + Added: Command line parameters: /a Select All, /d Do Command.&lt;br /&gt;
: + Added: Command line parameters: /nl NoLoad Settings, /ns NoSave Settings.&lt;br /&gt;
: + Added: Variety of view scrolling hotkeys. See hotkeys list.&lt;br /&gt;
: + Added: Hotkeys to Extended Clipboards dialog.&lt;br /&gt;
: + Added: Option of definition of a word: Whether include underscore.&lt;br /&gt;
: + Added: Disobey Word Wrapping in Go to Line.&lt;br /&gt;
: + Added: RE clone only: auto URL detection.&lt;br /&gt;
: - Fixed: Troubles with the size and position of minimized/maximized main window.&lt;br /&gt;
: - Fixed: Multibyte characters save troubles and binary files load minor bug.&lt;br /&gt;
: * All read-share locks removed, write write-share lock removed.&lt;br /&gt;
: * Unwrap tool has been modified to preserve paragraphs.&lt;br /&gt;
: * Missing GetLongPathName export function added for Win95 and WinNT4.&lt;br /&gt;
: * Smart Return, Title Case and Compare Strings modified a bit.&lt;br /&gt;
: * Select Word, Delete/BkSpace Spaces (now Delete/BkSpace Word) features modified.&lt;br /&gt;
: * First RichEdit (RE) clone released.&lt;br /&gt;
: Changes against version 3.1.1.&lt;br /&gt;
&lt;br /&gt;
; Version 3.1.1 (Nov 26, 2003)&lt;br /&gt;
: + Added: Recently opened files.&lt;br /&gt;
: + Added: Delete Spaces, BkSpace Spaces.&lt;br /&gt;
: + Added: Possibility of replacing multiple lines.&lt;br /&gt;
: + Added: Automatic use of the selection in Find/Replace Dialogs.&lt;br /&gt;
: + Added: Dual font switching (Fixed/Proportional - Default/Custom).&lt;br /&gt;
: + Added tools: Date/time Tools.&lt;br /&gt;
: + Added tools: Sort Ascending, Sort Descending.&lt;br /&gt;
: + Added tools: Indent Selection, Quote mail.&lt;br /&gt;
: + Added tools: Comit Word Wrap, Unwrap Selection.&lt;br /&gt;
: + Added: Left selection margin, Tab size, Default file type.&lt;br /&gt;
: + Added tools: Compare, Statistics.&lt;br /&gt;
: + Added: Select Word, Smart Return.&lt;br /&gt;
: + Added tools: Title and Sentence Case tools.&lt;br /&gt;
: + Added: Manual and instalation. Help was removed.&lt;br /&gt;
: * Sorting tool optimized. Reading/saving of files optimized.&lt;br /&gt;
: * Maintenance of Settings was completely modified.&lt;br /&gt;
: * Hotkeys of some tools were modified.&lt;br /&gt;
: Changes against version 2.6.1.&lt;br /&gt;
&lt;br /&gt;
; Version 2.6.1 (Dec 16, 2002)&lt;br /&gt;
: + Added tool: Sort - beta version of the sorting tool.&lt;br /&gt;
: + Added: Word Wrap option.&lt;br /&gt;
: + Added: Save Settings option.&lt;br /&gt;
: + Added: Tab characters can be inserted into dialog boxes easily.&lt;br /&gt;
: + Added tools: Reverse Text, Reverse Lines and Translate Characters.&lt;br /&gt;
: + Added: Saving of extended clipboards content.&lt;br /&gt;
: + Added: Warning that file length differs from loaded text length.&lt;br /&gt;
: + Added: Warning about Text Limit value.&lt;br /&gt;
: + Added tools: Enclose selection, Quote text.&lt;br /&gt;
: + Added: Save settings between sessions (Window position, Status bar, ...).&lt;br /&gt;
: + Added: Text Limit value -&amp;gt; Unlimited text size possibility.&lt;br /&gt;
: Changes against version 2.4.&lt;br /&gt;
&lt;br /&gt;
; Version 2.4 (Jul 24, 2002)&lt;br /&gt;
: * This version was something like the original Windows Notepad; with a status bar and nine extended clipboards; with text case conversion tools and UNICODE/UNIX/Win compatibility. It was full of hotkeys and dreams... Dreams to be implemented.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Category:Control:Version_6.3.1.0&amp;diff=6002</id>
		<title>Category:Control:Version 6.3.1.0</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Category:Control:Version_6.3.1.0&amp;diff=6002"/>
		<updated>2021-11-30T23:24:48Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Created page with &amp;quot;{{:Category:Version 6.3.1.0}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:Category:Version 6.3.1.0}}&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Category:Version_6.3.1.0&amp;diff=6001</id>
		<title>Category:Version 6.3.1.0</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Category:Version_6.3.1.0&amp;diff=6001"/>
		<updated>2021-11-30T23:24:08Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: Created page with &amp;quot;Version 6.3.1. Beta version released on Dec 1, 2021.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Version 6.3.1. Beta version released on Dec 1, 2021.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Save/Load_page&amp;diff=6000</id>
		<title>Save/Load page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Save/Load_page&amp;diff=6000"/>
		<updated>2021-11-30T23:22:39Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0|dialog|Settings:Save/Load}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|New}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Template file}}''' setting specifies path and file to be pre-loaded as template whenever a new document is created.&lt;br /&gt;
&lt;br /&gt;
Note: The new document is still untitled. Saving it does not mean saving into the file specified as {{field|Settings:Save/Load|Template file}}.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|Loading}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|File size warning}}''' setting tells to issue a warning whenever a file bigger than this size is being loaded, simply to prevent accidental unwanted long loading times. Use zero here to disable such warnings altogether.&lt;br /&gt;
&lt;br /&gt;
Note: This value does not limit size of files loadable in TED Notepad, merely poses a friendly loading warning and a choice to interrupt a lengthy operation.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Only one instance of each file}}''' setting specifies, whether TED Notepad should check for other instances of the same file already opened. When this option is turned on, each file is cross-checked upon opening, and if it is already opened in another window of TED Notepad, a warning is issued, asking the user, whether to switch to the already opened window.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Warn when file is modified from outside}}''' setting specifies, whether a watch is to be set for every opened file. When this option is turned on, TED Notepad raises a warning each time the currently opened file is modified by some other application. It asks, whether to {{feature|Revert}} the file upon such event.&lt;br /&gt;
&lt;br /&gt;
Note: By reverting, you discard all unsaved modifications and load the new version of the file. The selection and actual scrolling will try to persist the loading, locating the same line in the new version of the file.&lt;br /&gt;
&lt;br /&gt;
Note: For further details on how file {{feature|Encoding}} is handled upon reverting, see {{feature|Revert}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Revert without asking}} (remember!)''' setting can be used to automatically {{feature|Revert}} every time outsdide modifications are detected without asking the user. This can prove convenient when viewing always-changing log files, however, {{feature|Revert}} always discards any unsaved modifications and loads the new version of the file from the disk. Not asking for permission to do this can easily lead to irrecoverable loss of data. There is no {{feature|Undo}} after {{feature|Revert}}! Make sure this is acceptable. And remember enabling this!&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Warn on loading binary files}}''' setting specifies, whether user should be warned upon loading binary files. While TED Notepad is fully capable of handling binary files, it is not a hex editor and should not be used to edit binary files without great caution.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Auto-detect Unicode files}}''' setting specifies, whether Unicode detection via statistical analysis should be attempted on files without a {{defined|BOM}}. This will not apply to files with an explicit {{defined|BOM}}, and will only be attempted on files which fail UTF-8 recognition first.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|Backup}} (to {{string|.~}} files)====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Create backup files}}''' setting specifies, whether to create backup files by ''copying'' the previous version of the original file upon each save operation.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Keep multiple backups}}''' setting specifies, whether to create and keep more than one backup file. By default, backup file name is created by appending {{string|.~}} to the original file name and older backup files are overwritten by newer ones. However, with this setting turned on, up to 10 files are gradually created by appending {{string|.~0}} to {{string|.~9}} to the original file name. After using all 10 backup file names up, the oldest backup file is always replaced upon each save, effectivelly rotating them. Please note that in this case the backup file date/time must be used to locate the latest backup, not the backup file name.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Store backup files in Temp}}''' setting specifies, whether to store all backup files in the {{field|Settings:Save/Load|Temp path}} instead of using the original file path. If the original file path is used, the name of a backup file resembles nicely the original file name for user convenience. However, if backup files are stored in the {{field|Settings:Save/Load|Temp path}}, file names are somewhat mangled to prevent potential collisions between different original paths but same original file names.&lt;br /&gt;
&lt;br /&gt;
Note: This file name mangling in the {{field|Settings:Save/Load|Temp path}} may change in the future, but it should always be possible to manually identify and link backup files to their originals, even after such changes.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Use hidden backup files}}''' setting specifies, whether to create backup files with hidden file attribute. Hidden files usually do not get in the way, since they are not shown by file explorers, but can still be found and used if necessary.&lt;br /&gt;
&lt;br /&gt;
Note: Backup files are never created as hidden if stored in the {{field|Settings:Save/Load|Temp path}}. It is expected that the {{field|Settings:Save/Load|Temp path}} is not going to ''get in the way'' itself.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Delete backup file after save}}''' setting specifies, whether to delete the backup file after a successful save operation. With this setting turned on, backup files can be used to guard against disk failures without annoyingly lying around all over the place afterwards.&lt;br /&gt;
&lt;br /&gt;
{{tip}} In combination with the {{field|Settings:Save/Load|Flush file buffers after save}} setting, one can remain confident that either the old version of the file is still present on the disk, or the new one has been fully written to the disk (presuming Windows duly flushes all written data when instructed).&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|Auto-save}} (to {{string|.$}} files)====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Save recovery file}}''' setting specifies, whether to periodically auto-save currently opened file into a recovery file. The recovery file name is created by appending {{string|.$}} to the original file name. The auto-save operation is performed on background and occurs only, if there are unsaved modifications made to the document. The given number is the period for auto-saving in seconds, with a default of 300 seconds (i.e. 5 minutes) between each auto-save.&lt;br /&gt;
&lt;br /&gt;
Note: Recovery files are automatically deleted after successful {{feature|Save}} operation; or upon closing the document by user request (e.g. by opening a new file or closing the editor window). However, in case of power loss or system crash, recovery files are kept. Upon loading documents, TED Notepad automatically searches for presence of recovery files and notifies the user whenever a bereaved recovery file is found. See {{feature|Recovering auto-save files}} in chapter [[Recovering auto-save files]] for further details.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Save directly to original}}''' setting allows to skip recovery files and auto-save directly to the original file. This type of auto-save operation is performed on background as well and occurs only, if there are unsaved modifications made to the document. &lt;br /&gt;
&lt;br /&gt;
Note: Auto-saving like this does not resemble the manual {{feature|Save}} command in all manners. For example no backup file is created even if the {{field|Settings:Save/Load|Create backup files}} setting is turned on. {{feature|Undo}} and {{feature|Redo}} queues are not reduced by an auto-save operation even if the {{field|Settings:Edit|Reduce Undo/Redo upon Save}} setting is turned on. The document is not marked as saved and still says that there are {{feature|unsaved modifications}}.&lt;br /&gt;
&lt;br /&gt;
{{important}} Usual warnings, messages and questions typical for resolving saving troubles are not shown during auto-saving (as otherwise expected). Upon any errors, messages, dilemmas or questions, the auto-save process is simply interrupted. An information message might be posted on the {{feature|Status Bar}}, but not necessarily in all cases. From this point of view, saving directly to original is not very recommended and should only be used by users that fully understand the potential for inadvertent loss of data.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Store recovery files in Temp}}''' setting specifies, whether to store all recovery files in the {{field|Settings:Save/Load|Temp path}} instead of using the original file path. If the original file path is used, the name of a recovery file resembles nicely the original file name for user convenience. However, if recovery files are stored in the {{field|Settings:Save/Load|Temp path}}, file names are somewhat mangled to prevent potential collisions between different original paths but same original file names.&lt;br /&gt;
&lt;br /&gt;
Note: This file name mangling in the {{field|Settings:Save/Load|Temp path}} may change in the future, but it should always be possible to manually identify and link recovery files to their originals, even after such changes.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Use hidden recovery file}}''' setting specifies to set ''hidden'' attribute to all created recovery files. Since TED Notepad searches for presence of recovery files automatically upon loading documents, loss of information due to hidden recovery files is rather small.&lt;br /&gt;
&lt;br /&gt;
Note: Recovery files are never created as hidden if stored in the {{field|Settings:Save/Load|Temp path}}.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Save Untitled documents }}''' setting specifies, whether to auto-save new documents as well. A new document does not have a file yet, and TED Notepad does not know yet, whether and where the file would eventually be saved. Such new documents are thus always auto-saved into the {{field|Settings:Save/Load|Temp path}} and must be recovered manually after a crash or power loss. Names of the auto-saved untitled documents try to resemble the opening lines of those documents.&lt;br /&gt;
&lt;br /&gt;
{{tip}} If you experience a power loss and need to recover a lost Untitled document, open this page of the {{dialog|Settings}} dialog. Use the {{button|Settings:Save/Load|Explore}} button next to the {{field|Settings:Save/Load|Temp path}} to open the temp path, where the recovery file can be easily found.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|Saving}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Force Read-only files}}''' setting specifies, whether files with read-only attribute can be forcibly written to. By using this option, TED Notepad overrides default system behaviour, which prevents modification of such files.&lt;br /&gt;
&lt;br /&gt;
{{tip}} You can save into read-only file by opening its {{feature|Properties}} dialog (hotkey {{hotkey|Ctrl+F9}}) and unchecking the read-only attribute. After saving, you may then choose whether to set the read-only attribute back.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|No mixed newlines}}''' setting prevents from saving files with mixed newlines. The user is forced to some specific type of {{feature|Newlines}} at all times, and this type is then used upon saving to convert all encountered newlines. See {{feature|Newlines}} for further details.&lt;br /&gt;
&lt;br /&gt;
Note: After turning the {{field|Settings:Save/Load|No mixed newlines}} setting on, if the current document has {{field|Newlines|Mixed}} newlines selected for the {{feature|Newlines}} option, the {{field|Settings:File|Default newlines}} setting from the [[File page]] of the {{dialog|Settings}} dialog is used to choose new {{feature|Newlines}} option for the document.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Flush file buffers after save}}''' setting specifies, whether to instruct Windows to flush written data to the disk. &lt;br /&gt;
&lt;br /&gt;
Note: Explicitly flushing data to the disk may decrease the disk performance, but it can help ensuring that the data really gets written to the disk as soon as possible, thus avoiding potential loss of the data due to power failures while the data is being handled in the buffers.&lt;br /&gt;
&lt;br /&gt;
{{tip}} See the {{field|Settings:Save/Load|Create backup files}} and {{field|Settings:Save/Load|Delete backup file after save}} settings to prevent potential loss of the data even further.&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Use memory-optimized saving}}''' setting specifies, whether to use file streaming routines when saving big files.&lt;br /&gt;
&lt;br /&gt;
Note: File streaming routines are capable of saving much bigger files, but may be slower on some network drives, or drives that require specific buffering modes. Use this setting to troubleshoot slow file saving.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Save/Load|Temp path}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Save/Load|Temp path}}''' setting specifies relative or absolute path, where to store temporary files.&lt;br /&gt;
* If no path is specified, the default current user temp folder is used; e.g. {{system|C:\Documents and Settings\User\Local Settings\Temp\TedNPad}}.&lt;br /&gt;
* If absolute path is specified, it is used unmodified. Note: No sub-directories are created and filename conflicts may potentially arise.&lt;br /&gt;
* If relative path is specified (e.g. {{string|.\temp}} or {{string|\docs}}), it refers to current working directory. Note: The current working directory is usually the directory which TED Notepad was started from; although shortcuts allow to specify another starting directory for example. The current working directory stays the same throughout the entire instance session.&lt;br /&gt;
&lt;br /&gt;
{{tip}} A useful example for ''secure'' portable usage is a relative path starting with a back-slash (e.g. {{string|\temp\TedNPad}}), which makes all temporary files always to be stored on the same drive, from which you originally launched the application. This can be used to twist the USB drive around, while moving TED Notepad on the USB drive from one computer to another. Make the {{string|\temp}} folder hidden to get it out of the way.&lt;br /&gt;
&lt;br /&gt;
{{tip}} If the path specified does not exist, it is automatically created. This can be very useful, but also potentially annoying, if relative path like {{string|.\temp}} is specified, since {{string|temp}} folders might start to appear all over the place.&lt;br /&gt;
&lt;br /&gt;
Note: One of the requirements for this to work, is to use correct working directory upon launching TED Notepad from the USB drive. In most typical cases, the system uses the USB drive as the working directory (as expected). However, some file managers and portable launchers may need to be told what working directory to use explicitly. Set them to use the USB drive.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversiony&amp;diff=5999</id>
		<title>Template:Manversiony</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversiony&amp;diff=5999"/>
		<updated>2021-11-30T23:22:21Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{{1}}}&lt;br /&gt;
 | 6.0.0.16 = 6.3.1.0&lt;br /&gt;
 | 6.0.0.17 = 6.3.1.0&lt;br /&gt;
 | 6.0.2.0 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.2 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.3 = 6.3.1.0&lt;br /&gt;
 | 6.1.0.4 = 6.3.1.0&lt;br /&gt;
 | 6.1.1.0 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.8 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.9 = 6.3.1.0&lt;br /&gt;
 | 6.3.0.10 = 6.3.1.0&lt;br /&gt;
 | {{{1}}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Agreement&amp;diff=5998</id>
		<title>Agreement</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Agreement&amp;diff=5998"/>
		<updated>2021-11-29T20:35:06Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.3.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unless the context requires otherwise,&lt;br /&gt;
&lt;br /&gt;
# “may not” means does not have the right to do something,&lt;br /&gt;
# “including” (and any of its derivative forms) means including but not limited to,&lt;br /&gt;
# “shall” is expression of command, not merely expressions of future intent or expectation.&lt;br /&gt;
&lt;br /&gt;
You understand that&lt;br /&gt;
&lt;br /&gt;
# The author offers this software to the public with best intentions, and for free, but without any guarantees, promises or assurances.&lt;br /&gt;
# The author cannot reasonably asses (or verify) the quality, adequacy, correctness or completeness of the software, and leaves this task with you.&lt;br /&gt;
# The author cannot reasonably asses legal consequences of you using (or not using) this software, and leaves this task with you.&lt;br /&gt;
&lt;br /&gt;
End User License Agreement&lt;br /&gt;
&lt;br /&gt;
# This software is FREEWARE. You are welcome to distribute it, but only AS IT IS and only as FREEWARE. You may not sell this software. If you make profit from distribution of this software, you must always make it obvious and clear, that this software is freeware and that it is available for free at the official home page. You may not hide the fact that this software is freeware in attempt to make profit. If you make profit from this software, you are kindly asked for a donation of your choice.&lt;br /&gt;
# You may not include this software as a transparent portion of other software. If you distribute this software with other software, you must always make it obvious and clear, that this software is also available independently from the other software at the official home page. The presence and name of this software must always be obvious and clear. You may not hide the name of this software in any way.&lt;br /&gt;
# The authorship credit for this software must be obvious and clear. If you distribute this software, the authorship credit must appear where any other comparable authorship credit appears.&lt;br /&gt;
# If you distribute this software, you must distribute all parts of the software, including the documentation files. See the official download page for distributable packages.&lt;br /&gt;
# You MAY NOT MODIFY this software or any portion of it. You may not translate or localize this software. You may not reverse engineer, decompile, disassemble or alter this software. You may not create derivative works from this software or any portion of it. You may not modify the documentation and/or installation files.&lt;br /&gt;
# You are welcome to use this software for personal and/or commercial purposes for free and for as long as you wish. If you make profit by using this software, you are kindly asked for a donation of your choice.&lt;br /&gt;
# This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. In no event shall the author be liable to any party for any direct, indirect, repercussive, resulting, special, punitive, incidental or consequential damages (including, but not limited to, damages for loss of business profits, business interruption, loss of programs or information, and the like), or any other damages arising in any way out of the availability, use, reliance on, or inability to use the software, even if the author shall have been advised of the possibility of such damages. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, the author's liability shall be limited to the extent permitted by law. The entire risk as to the quality and performance, the accuracy, adequacy, completeness, correctness and validity is with the user.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Agreement&amp;diff=5997</id>
		<title>Agreement</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Agreement&amp;diff=5997"/>
		<updated>2021-11-29T20:30:13Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.1.1.0}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unless the context requires otherwise,&lt;br /&gt;
&lt;br /&gt;
# “may not” means does not have the right to do something,&lt;br /&gt;
# “including” (and any of its derivative forms) means including but not limited to,&lt;br /&gt;
# “shall” is expression of command, not merely expressions of future intent or expectation.&lt;br /&gt;
&lt;br /&gt;
You understand that&lt;br /&gt;
&lt;br /&gt;
# The author offers this software to the public with best intentions, and for free, but without any guarantees, promises or assurances.&lt;br /&gt;
# The author cannot reasonably asses (or verify) the quality, adequacy, correctness or completeness of the software, and leaves this task with you.&lt;br /&gt;
# The author cannot reasonably asses legal consequences of you using (or not using) this software, and leaves this task with you.&lt;br /&gt;
&lt;br /&gt;
End User License Agreement&lt;br /&gt;
&lt;br /&gt;
# This software is FREEWARE. You are welcome to distribute it, but only AS IT IS and only as FREEWARE. You may not sell this software. If you make profit from distribution of this software, you must always make it obvious and clear, that this software is freeware and that it is available for free at the official home page. You may not hide the fact that this software is freeware in attempt to make profit. If you make profit from this software, you are kindly asked for a donation of your choice.&lt;br /&gt;
# You may not include this software as a transparent portion of other software. If you distribute this software with other software, you must always make it obvious and clear, that this software is also available independently from the other software at the official home page. The presence and name of this software must always be obvious and clear. You may not hide the name of this software in any way.&lt;br /&gt;
# The authorship credit for this software must be obvious and clear. If you distribute this software, the authorship credit must appear where any other comparable authorship credit appears.&lt;br /&gt;
# If you distribute this software, you must distribute all parts of the software, including the documentation files. See the official download page for distributable packages.&lt;br /&gt;
# You MAY NOT MODIFY this software or any portion of it. You may not translate or localize this software. You may not reverse engineer, decompile, disassemble or alter this software. You may not create derivative works from this software or any portion of it. You may not modify the documentation and/or installation files.&lt;br /&gt;
# You are welcome to use this software for personal and/or commercial purposes for free and for as long as you wish. If you make profit by using this software, you are kindly asked for a donation of your choice.&lt;br /&gt;
# This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. In no event shall the author be liable to any party for any direct, indirect, repercussive, resulting, special, punitive, incidental or consequential damages (including, but not limited to, damages for loss of business profits, business interruption, loss of programs or information, and the like), or any other damages arising in any way out of the availability, use, reliance on, or inability to use the software, even if the author shall have been advised of the possibility of such damages. Because some states or jurisdictions do not allow the exclusion or the limitation of liability for consequential or incidental damages, in such states or jurisdictions, the author's liability shall be limited to the extent permitted by law. The entire risk as to the quality and performance, the accuracy, adequacy, completeness, correctness and validity is with the user.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Clipboard_page&amp;diff=5996</id>
		<title>Clipboard page</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Clipboard_page&amp;diff=5996"/>
		<updated>2021-11-26T01:29:10Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{manversion|6.0.0.17|dialog|Settings:Clipboard}}__NOTOC__&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Clipboard|Auto-select upon Copy with empty selection}}:====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection}}''' setting allows to automatically select nearby text, if {{feature|Copy}}, {{feature|Cut}} or {{feature|Swap}} is invoked while nothing is selected. The amount of text automatically selected can be one of the following:&lt;br /&gt;
* '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection: Disabled}}''' &amp;amp;mdash; nothing is automatically selected.&lt;br /&gt;
* '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection: Word}}''' &amp;amp;mdash; one word, all white-spaces, or one delimiter is selected.&lt;br /&gt;
* '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection: Line}}''' &amp;amp;mdash; current entire unwrapped line is selected.&lt;br /&gt;
* '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection: Paragraph}}''' &amp;amp;mdash; current entire paragraph is selected.&lt;br /&gt;
* '''{{field|Settings:Clipboard|Auto-select upon Copy with empty selection: Entire document}}''' &amp;amp;mdash; entire document is selected.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Clipboard|Copy with mouse}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Clipboard|Auto-copy when selecting with mouse}}''' setting automatically invokes {{feature|Copy}} into system Clipboard when the mouse button is released after selecting text (only when using the left mouse button).&lt;br /&gt;
&lt;br /&gt;
Note: This automated {{feature|Copy}} thru mouse may {{feature|Copy}} several times upon multi-click mouse selecting. This is because multi-clicking involves multiple mouse button releases. And each such mouse button release is registered as selection change and must invoke {{feature|Copy}} (just in case there comes no further mouse action).&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Clipboard|Only when Ctrl is pressed while selecting}}''' setting invokes {{feature|Copy}} upon mouse selecting only when {{hotkey|Ctrl}} is pressed while selecting. On the other hand, if this option is turned off, the {{hotkey|Ctrl}} key is checked upon mouse selecting anyway, and instead prevents {{feature|Copy}} when pressed. In other words, the value of the {{field|Settings:Clipboard|Only when Ctrl is pressed while selecting}} setting determines, whether automated {{feature|Copy}} thru mouse selecting is to be used with or without {{hotkey|Ctrl}} key.&lt;br /&gt;
&lt;br /&gt;
Note: The {{hotkey|Ctrl}} key is checked only upon mouse button release, therefore, it only needs to be pressed (or not pressed) upon releasing the mouse button after selecting. This is, however, misleading upon multi-clicking, since when multi-clicking, multiple mouse button releases occur, which can trigger {{feature|Copy}} as well.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Clipboard|Paste with mouse upon}}:====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Clipboard|Paste with mouse upon}}''' setting allows to {{feature|Paste}} text from system Clipboard by simple mouse {{hotkey|Right-click}}.&lt;br /&gt;
&lt;br /&gt;
By default, mouse {{hotkey|Right-click}} displays small {{feature|Right-click context menu}}, similar to the one known from other Windows applications. Using {{hotkey|Ctrl+Right-click}} on the other hand allows to {{feature|Paste}} text from system Clipboard conveniently thru mouse. The {{field|Settings:Clipboard|Paste with mouse upon}} setting alters this behaviour by switching the meaning of the {{hotkey|Ctrl}} upon any {{hotkey|Right-click}}:&lt;br /&gt;
&lt;br /&gt;
* '''{{field|Settings:Clipboard|Paste with mouse upon: Right-click}}''' &amp;amp;mdash; invokes {{feature|Paste}} thru {{hotkey|Right-click}}, and {{feature|Right-click context menu}} thru {{hotkey|Ctrl+Right-click}}.&lt;br /&gt;
* '''{{field|Settings:Clipboard|Paste with mouse upon: Ctrl + Right-click}}''' &amp;amp;mdash; invokes {{feature|Right-click context menu}} thru {{hotkey|Right-click}}, and {{feature|Paste}} thru {{hotkey|Ctrl+Right-click}}.&lt;br /&gt;
&lt;br /&gt;
Note: Both {{feature|Right-click context menu}} and {{feature|Paste}} are invoked only upon releasing the mouse button from ''clicked'' state. See chapter [[Using mouse]] for further details on how this can be exploited towards pretty advanced mouse tricks and antics.&lt;br /&gt;
&lt;br /&gt;
Adding {{hotkey|Shift}} key to the {{hotkey|Right-click}} or {{hotkey|Ctrl+Right-click}} invokes {{feature|Swap}} instead of {{feature|Paste}}. It is important to note, however, that using {{hotkey|Shift}} key with mouse also has another purpose &amp;amp;mdash; it extends the current selection. While extending the selection is possible upon pressing the button, invoking {{feature|Swap}} is available while releasing the button. This can take some training to master but can be worth it. Again, see chapter [[Using mouse]] and see {{feature|Swap}} and {{feature|Paste}} for details.&lt;br /&gt;
&lt;br /&gt;
===={{field|Settings:Clipboard|Enhanced}}====&lt;br /&gt;
&lt;br /&gt;
The '''{{field|Settings:Clipboard|Mimic original case upon Paste}}''' setting enables to {{defined|mimic case}} upon replacing selection with {{feature|Paste}} from system Clipboard. Upon {{feature|Paste}}, if there is non-empty selection being replaced, text of the selection is scanned and {{defined|character case}} of text from the system Clipboard is converted just before replacing the selection.&lt;br /&gt;
&lt;br /&gt;
Note: The {{defined|character case}} conversion within text from the system Clipboard does not modify the system Clipboard content. The conversion is applied onto the text while replacing the selection, after retrieving it from the system Clipboard.&lt;br /&gt;
&lt;br /&gt;
See {{feature|Paste}} for further details.&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5995</id>
		<title>Template:Manversionx</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5995"/>
		<updated>2021-11-26T01:12:05Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{manversiony|{{{1}}}}}&lt;br /&gt;
 | 6.2.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | 6.3.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | '''You see work in progress here; this section already reflects future TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].&amp;lt;br&amp;gt;This section may contain incomplete, premature, or mistaken information, prone to change without notice.'''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Common.css&amp;diff=5994</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Common.css&amp;diff=5994"/>
		<updated>2021-11-26T01:09:02Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; /**************************************/&lt;br /&gt;
/* global things, wiki customizations */&lt;br /&gt;
&lt;br /&gt;
#globalWrapper {&lt;br /&gt;
 position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#bodyContent a[href^=&amp;quot;https://&amp;quot;] {&lt;br /&gt;
 background: transparent !important;&lt;br /&gt;
 padding: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content {&lt;br /&gt;
 background-color: #fcfcfc;&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
A {&lt;br /&gt;
 white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
A.new {&lt;br /&gt;
 color: red !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.toc {&lt;br /&gt;
 margin-top: 30px;&lt;br /&gt;
 margin-bottom: 30px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
BODY, li#pt-userpage, li#pt-anonuserpage, li#pt-login {&lt;br /&gt;
 background-image: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#bodyContent H1, #bodyContent H2, #bodyContent H3, #bodyContent H4, #bodyContent H5, #bodyContent H6 {&lt;br /&gt;
	padding: 2em 1px 2px 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content H4 {&lt;br /&gt;
	font-size: 130%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content DIV.tnp_scroller {&lt;br /&gt;
 overflow: auto;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div#footer {&lt;br /&gt;
	border-color: silver !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div#userloginForm form,&lt;br /&gt;
div#userlogin form#userlogin2 {&lt;br /&gt;
	clear: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**********************/&lt;br /&gt;
/* special tnp tables */ &lt;br /&gt;
&lt;br /&gt;
DIV.tnp_manversion,&lt;br /&gt;
DIV.tnp_headline {&lt;br /&gt;
 text-align: right;&lt;br /&gt;
 font-size: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_manversion B {&lt;br /&gt;
 font-size: 125%;&lt;br /&gt;
 color: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_anchor {&lt;br /&gt;
 text-align: right;&lt;br /&gt;
 font-size: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
H4+DIV.tnp_anchor {&lt;br /&gt;
 margin-top: -1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_screenshot {&lt;br /&gt;
 background-color: #eeeeff;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 margin-left: 10px;&lt;br /&gt;
 margin-bottom: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_todo {&lt;br /&gt;
 background-color: #ffaaaa;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 padding-left: 3px;&lt;br /&gt;
 padding-right: 3px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_hotkeys TH {&lt;br /&gt;
 vertical-align: top;&lt;br /&gt;
 background-color: #d0d0d0;&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_hotkeys TD {&lt;br /&gt;
 vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_faq {&lt;br /&gt;
 background-color: #eeddff;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px dashed;&lt;br /&gt;
 padding-top: 5px;&lt;br /&gt;
 padding-left: 10px;&lt;br /&gt;
 padding-right: 10px;&lt;br /&gt;
 padding-bottom: 5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_relediff TD {&lt;br /&gt;
 background-color: #e0e0e0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_relediff TH {&lt;br /&gt;
 background-color: #d0d0d0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example {&lt;br /&gt;
 margin-bottom: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example CAPTION {&lt;br /&gt;
 margin-top: 1em;&lt;br /&gt;
 text-align: left;&lt;br /&gt;
 white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD {&lt;br /&gt;
 font-family: monospace;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD {&lt;br /&gt;
 display: block;&lt;br /&gt;
 white-space: pre;&lt;br /&gt;
 line-height: normal;&lt;br /&gt;
 color: black;&lt;br /&gt;
 background-color: white;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 padding: 5px 20px 5px 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TR.tnp_cmdline TD {&lt;br /&gt;
 color: silver;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TR.tnp_cmdline TD B {&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD SAMP {&lt;br /&gt;
 background-color: darkblue;&lt;br /&gt;
 color: white !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 /************************/&lt;br /&gt;
/* features/tools names */ &lt;br /&gt;
&lt;br /&gt;
CITE,&lt;br /&gt;
CITE A {&lt;br /&gt;
	color: purple !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
CITE B,&lt;br /&gt;
CITE B A {&lt;br /&gt;
	font-style: normal !important;&lt;br /&gt;
	color: black !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***********/&lt;br /&gt;
/* hotkeys */ &lt;br /&gt;
&lt;br /&gt;
KBD {&lt;br /&gt;
	background-color: #eee;&lt;br /&gt;
	border: 1px solid #ccc;&lt;br /&gt;
	border-radius: 3px 3px 3px 3px;&lt;br /&gt;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 1px 2px 2px #fff;&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
	font-family: monospace;&lt;br /&gt;
	padding: 0 0.6em;&lt;br /&gt;
	margin: 0 4px;&lt;br /&gt;
	text-shadow: 0 1px 0 #fff;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	color: #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***************/&lt;br /&gt;
/* definitions */ &lt;br /&gt;
&lt;br /&gt;
Q {&lt;br /&gt;
	color: maroon;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
}&lt;br /&gt;
Q A {&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	color: black !important;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
	text-decoration: none !important;&lt;br /&gt;
}&lt;br /&gt;
Q A:hover {&lt;br /&gt;
	color: maroon !important;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
	text-decoration: underline !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**********/&lt;br /&gt;
/* values */ &lt;br /&gt;
&lt;br /&gt;
VAR,&lt;br /&gt;
VAR A {&lt;br /&gt;
	color: green !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	font-family: monospace;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* whitespaces can not be 'nowrap' here!!! it is not enough! */&lt;br /&gt;
&lt;br /&gt;
VAR {&lt;br /&gt;
	margin: -1px 0;&lt;br /&gt;
	padding: 0 1px;&lt;br /&gt;
}&lt;br /&gt;
VAR:hover {&lt;br /&gt;
	outline: 1px dashed green;&lt;br /&gt;
	background-color: #eee;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
SPAN.system,&lt;br /&gt;
SPAN.system A {&lt;br /&gt;
	color: green !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***********/&lt;br /&gt;
/* regexps */ &lt;br /&gt;
&lt;br /&gt;
VAR.regexp {&lt;br /&gt;
	outline: 0;&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	font-style: normal;&lt;br /&gt;
	color: maroon !important;&lt;br /&gt;
	border: 0;&lt;br /&gt;
	border-radius: 3px 3px 3px 3px;&lt;br /&gt;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 1px 2px 2px #fff;&lt;br /&gt;
	padding: 1px 3px;&lt;br /&gt;
	margin: 0 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /********************************/&lt;br /&gt;
/* special/unimportant comments */ &lt;br /&gt;
&lt;br /&gt;
SMALL VAR {&lt;br /&gt;
	color: gray !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: normal !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**************************/&lt;br /&gt;
/* inserts and todo lists */ &lt;br /&gt;
&lt;br /&gt;
INS {&lt;br /&gt;
	text-decoration: none;&lt;br /&gt;
	background-color: yellow !important;&lt;br /&gt;
}&lt;br /&gt;
DEL {&lt;br /&gt;
	color: gray;&lt;br /&gt;
	text-decoration: line-through;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /*********************************/&lt;br /&gt;
/* obsolete, should not be used! */ &lt;br /&gt;
&lt;br /&gt;
CODE {&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
SPAN.deprecated {&lt;br /&gt;
	color: white;&lt;br /&gt;
	background-color: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 /*******/&lt;br /&gt;
/* ads */ &lt;br /&gt;
&lt;br /&gt;
DIV#tednpadAdsRight {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: -5px;&lt;br /&gt;
	border: 1px solid black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV#bodyContent {&lt;br /&gt;
	padding-right: 170px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
NAV#p-ads.emptyPortlet {&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Common.css&amp;diff=5993</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=MediaWiki:Common.css&amp;diff=5993"/>
		<updated>2021-11-26T01:08:19Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; /**************************************/&lt;br /&gt;
/* global things, wiki customizations */&lt;br /&gt;
&lt;br /&gt;
#globalWrapper {&lt;br /&gt;
 position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#bodyContent a[href^=&amp;quot;https://&amp;quot;] {&lt;br /&gt;
 background: transparent !important;&lt;br /&gt;
 padding: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content {&lt;br /&gt;
 background-color: #fcfcfc;&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
A {&lt;br /&gt;
 white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
A.new {&lt;br /&gt;
 color: red !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.toc {&lt;br /&gt;
 margin-top: 30px;&lt;br /&gt;
 margin-bottom: 30px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
BODY, li#pt-userpage, li#pt-anonuserpage, li#pt-login {&lt;br /&gt;
 background-image: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#bodyContent H1, #bodyContent H2, #bodyContent H3, #bodyContent H4, #bodyContent H5, #bodyContent H6 {&lt;br /&gt;
	padding: 2em 1px 2px 1px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content H4 {&lt;br /&gt;
	font-size: 130%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
#content DIV.tnp_scroller {&lt;br /&gt;
 overflow: auto;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div#footer {&lt;br /&gt;
	border-color: silver !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
div#userloginForm form,&lt;br /&gt;
div#userlogin form#userlogin2 {&lt;br /&gt;
	clear: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**********************/&lt;br /&gt;
/* special tnp tables */ &lt;br /&gt;
&lt;br /&gt;
DIV.tnp_manversion,&lt;br /&gt;
DIV.tnp_headline {&lt;br /&gt;
 text-align: right;&lt;br /&gt;
 font-size: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_manversion B {&lt;br /&gt;
 font-size: 125%;&lt;br /&gt;
 color: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_anchor {&lt;br /&gt;
 text-align: right;&lt;br /&gt;
 font-size: 80%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
H4+DIV.tnp_anchor {&lt;br /&gt;
 margin-top: &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_screenshot {&lt;br /&gt;
 background-color: #eeeeff;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 margin-left: 10px;&lt;br /&gt;
 margin-bottom: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_todo {&lt;br /&gt;
 background-color: #ffaaaa;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 padding-left: 3px;&lt;br /&gt;
 padding-right: 3px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_hotkeys TH {&lt;br /&gt;
 vertical-align: top;&lt;br /&gt;
 background-color: #d0d0d0;&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_hotkeys TD {&lt;br /&gt;
 vertical-align: top;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV.tnp_faq {&lt;br /&gt;
 background-color: #eeddff;&lt;br /&gt;
 color: black;&lt;br /&gt;
 border: 1px dashed;&lt;br /&gt;
 padding-top: 5px;&lt;br /&gt;
 padding-left: 10px;&lt;br /&gt;
 padding-right: 10px;&lt;br /&gt;
 padding-bottom: 5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_relediff TD {&lt;br /&gt;
 background-color: #e0e0e0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_relediff TH {&lt;br /&gt;
 background-color: #d0d0d0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example {&lt;br /&gt;
 margin-bottom: 1em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example CAPTION {&lt;br /&gt;
 margin-top: 1em;&lt;br /&gt;
 text-align: left;&lt;br /&gt;
 white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD {&lt;br /&gt;
 font-family: monospace;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD {&lt;br /&gt;
 display: block;&lt;br /&gt;
 white-space: pre;&lt;br /&gt;
 line-height: normal;&lt;br /&gt;
 color: black;&lt;br /&gt;
 background-color: white;&lt;br /&gt;
 border: 1px solid;&lt;br /&gt;
 padding: 5px 20px 5px 20px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TR.tnp_cmdline TD {&lt;br /&gt;
 color: silver;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TR.tnp_cmdline TD B {&lt;br /&gt;
 color: black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
TABLE.tnp_example TD SAMP {&lt;br /&gt;
 background-color: darkblue;&lt;br /&gt;
 color: white !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 /************************/&lt;br /&gt;
/* features/tools names */ &lt;br /&gt;
&lt;br /&gt;
CITE,&lt;br /&gt;
CITE A {&lt;br /&gt;
	color: purple !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
CITE B,&lt;br /&gt;
CITE B A {&lt;br /&gt;
	font-style: normal !important;&lt;br /&gt;
	color: black !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***********/&lt;br /&gt;
/* hotkeys */ &lt;br /&gt;
&lt;br /&gt;
KBD {&lt;br /&gt;
	background-color: #eee;&lt;br /&gt;
	border: 1px solid #ccc;&lt;br /&gt;
	border-radius: 3px 3px 3px 3px;&lt;br /&gt;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 1px 2px 2px #fff;&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
	font-family: monospace;&lt;br /&gt;
	padding: 0 0.6em;&lt;br /&gt;
	margin: 0 4px;&lt;br /&gt;
	text-shadow: 0 1px 0 #fff;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	color: #333;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***************/&lt;br /&gt;
/* definitions */ &lt;br /&gt;
&lt;br /&gt;
Q {&lt;br /&gt;
	color: maroon;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
}&lt;br /&gt;
Q A {&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	color: black !important;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
	text-decoration: none !important;&lt;br /&gt;
}&lt;br /&gt;
Q A:hover {&lt;br /&gt;
	color: maroon !important;&lt;br /&gt;
	font-style: italics !important;&lt;br /&gt;
	text-decoration: underline !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**********/&lt;br /&gt;
/* values */ &lt;br /&gt;
&lt;br /&gt;
VAR,&lt;br /&gt;
VAR A {&lt;br /&gt;
	color: green !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	font-family: monospace;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
	display: inline-block;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* whitespaces can not be 'nowrap' here!!! it is not enough! */&lt;br /&gt;
&lt;br /&gt;
VAR {&lt;br /&gt;
	margin: -1px 0;&lt;br /&gt;
	padding: 0 1px;&lt;br /&gt;
}&lt;br /&gt;
VAR:hover {&lt;br /&gt;
	outline: 1px dashed green;&lt;br /&gt;
	background-color: #eee;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
SPAN.system,&lt;br /&gt;
SPAN.system A {&lt;br /&gt;
	color: green !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /***********/&lt;br /&gt;
/* regexps */ &lt;br /&gt;
&lt;br /&gt;
VAR.regexp {&lt;br /&gt;
	outline: 0;&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	font-style: normal;&lt;br /&gt;
	color: maroon !important;&lt;br /&gt;
	border: 0;&lt;br /&gt;
	border-radius: 3px 3px 3px 3px;&lt;br /&gt;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 1px 2px 2px #fff;&lt;br /&gt;
	padding: 1px 3px;&lt;br /&gt;
	margin: 0 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /********************************/&lt;br /&gt;
/* special/unimportant comments */ &lt;br /&gt;
&lt;br /&gt;
SMALL VAR {&lt;br /&gt;
	color: gray !important;&lt;br /&gt;
	font-style: italics;&lt;br /&gt;
	white-space: normal !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /**************************/&lt;br /&gt;
/* inserts and todo lists */ &lt;br /&gt;
&lt;br /&gt;
INS {&lt;br /&gt;
	text-decoration: none;&lt;br /&gt;
	background-color: yellow !important;&lt;br /&gt;
}&lt;br /&gt;
DEL {&lt;br /&gt;
	color: gray;&lt;br /&gt;
	text-decoration: line-through;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
 /*********************************/&lt;br /&gt;
/* obsolete, should not be used! */ &lt;br /&gt;
&lt;br /&gt;
CODE {&lt;br /&gt;
	white-space: nowrap;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
SPAN.deprecated {&lt;br /&gt;
	color: white;&lt;br /&gt;
	background-color: red;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 /*******/&lt;br /&gt;
/* ads */ &lt;br /&gt;
&lt;br /&gt;
DIV#tednpadAdsRight {&lt;br /&gt;
	position: absolute;&lt;br /&gt;
	right: -5px;&lt;br /&gt;
	border: 1px solid black;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
DIV#bodyContent {&lt;br /&gt;
	padding-right: 170px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
NAV#p-ads.emptyPortlet {&lt;br /&gt;
	display: block;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5992</id>
		<title>Template:Manversionx</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5992"/>
		<updated>2021-11-26T00:44:08Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{manversiony|{{{1}}}}}&lt;br /&gt;
 | 6.2.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | 6.3.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | '''You see work in progress here; this section already reflects future TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].&amp;lt;br&amp;gt;Warning: This section may contain incomplete, premature, or mistaken information, prone to change without notice.'''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5991</id>
		<title>Template:Manversionx</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5991"/>
		<updated>2021-11-26T00:38:04Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{manversiony|{{{1}}}}}&lt;br /&gt;
 | 6.2.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | 6.3.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | '''This section reflects future TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].&amp;lt;br&amp;gt;Important: You see work in progress here, this page contains documentation of a future version!&amp;lt;br&amp;gt;Warning: This page may contain incomplete, premature, or mistaken information, prone to change without notice.'''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5990</id>
		<title>Template:Manversionx</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionx&amp;diff=5990"/>
		<updated>2021-11-26T00:36:54Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#switch:{{manversiony|{{{1}}}}}&lt;br /&gt;
 | 6.2.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | 6.3.1.0 = {{manversionz|{{{1}}}|{{{2|}}}}}&lt;br /&gt;
 | '''This page reflects future TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].&amp;lt;br&amp;gt;Important: You see work in progress here, this page contains documentation of a future version!&amp;lt;br&amp;gt;Warning: This page may contain incomplete, premature, or mistaken information, prone to change without notice.'''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
	<entry>
		<id>https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionz&amp;diff=5989</id>
		<title>Template:Manversionz</title>
		<link rel="alternate" type="text/html" href="https://jsimlo.sk/notepad/manual/wiki/index.php?title=Template:Manversionz&amp;diff=5989"/>
		<updated>2021-11-26T00:36:47Z</updated>

		<summary type="html">&lt;p&gt;Jsimlo: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#if:{{{2|}}}||''This section is up to date for TED Notepad version [[:Category:Version {{manversiony|{{{1}}}}}|{{manversiony|{{{1}}}}}]].''}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;#REDIRECT [[Help:Templates/Manversion]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jsimlo</name></author>
	</entry>
</feed>