Skip to content

Commit

Permalink
v1.9.18 Fix Column Search
Browse files Browse the repository at this point in the history
  • Loading branch information
lintalist committed Oct 19, 2022
1 parent efd5a82 commit 85516ee
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 11 deletions.
4 changes: 4 additions & 0 deletions changelog.md
@@ -1,3 +1,7 @@
### v1.9.18

* Fix: Column Search should now reset properly after a search, so normal search works correctly again https://github.com/lintalist/lintalist/issues/232

### v1.9.17

* New: Added setting for ColumnSearchDelimiter to allow to search in a specific part of
Expand Down
21 changes: 13 additions & 8 deletions docs/index.html
Expand Up @@ -20,15 +20,20 @@
<br /><br />
<span style='font-size:.8em;'><b>Lintalist</b> is <b>open source</b> and developed in <a href='https://autohotkey.com/'>AutoHotkey</a>, an easy to learn scripting language for Windows.
[WinXP(sp3)/Vista/7/8/10]<br /></span>
<span class='date' style='float:right;display:inline;margin-top:0px;'>doc rev. 20220823</span></p>
<span class='date' style='float:right;display:inline;margin-top:0px;'>doc rev. 20221008</span></p>
</div>

<div class='column'>
<p><b>Program</b></p>
<ul>
<li><a href='#Introduction'>Introduction</a></li>
<li><a href='#Installing'>Installing Lintalist</a></li>
<li><a href='#Searching'>Start searching</a></li>
<li><a href='#Searching'>Start searching</a>
<ul>
<li><a href='#Omni'>OmniSearch</a></li>
<li><a href='#ColumnSearch'>ColumnSearch</a></li>
</ul>
</li>
<li><a href='#Shortcuts'>Using Shortcuts</a> (Hotkeys)</li>
<li><a href='#Shorthand'>Using Shorthand</a> (Abbrev.)</li>
<li><a href='#KeyboardShortcuts'>Lintalist Keyboard Shortcuts</a></li>
Expand Down Expand Up @@ -87,11 +92,11 @@
</div>

<div class='column'>
<p><b>Download Lintalist <em>1.9.17</em></b>
<p><b>Download Lintalist <em>1.9.18</em></b>
<p>
<a href='https://github.com/lintalist/lintalist/releases'><img src='img/lintalist65x65.gif' alt='Download Lintalist' width='65' align='left' border='0' style='margin-right: 5px;' /></a>
Download (incl. source):<br />
<a href='https://github.com/lintalist/lintalist/releases'><b>Latest release</b></a> (916 kb)<br />Simply unpack and run lintalist.ahk or lintalist.exe<br />
<a href='https://github.com/lintalist/lintalist/releases'><b>Latest release</b></a> (917 kb)<br />Simply unpack and run lintalist.ahk or lintalist.exe<br />
</p>

<span class='tip' style="margin-bottom:10px;"><img src="img/usb.png" width=50 align=right title="USB image by Alessandro Rei (GNU/GPL) - http://findicons.com/icon/255067/usb?id=256158">Lintalist is a <b>portable application</b>. It stores all settings and bundles in the folder the program resides in. <a href="#portable">More...</a>
Expand Down Expand Up @@ -278,7 +283,7 @@ <h3 id='RegExCase'><a href='#RegExCase' class='headline'>RegEx &amp; Case sensit
(De)Activate the setting via the <i>L<u>v</u></i> button in the Search GUI (<kbd>Alt</kbd>+<kbd>v</kbd>) or the SearchLetterVariations setting in the Configuration menu.
More information in the comments of 'include\LetterVariations.ahk'

<h3 id='Omni'><a href='#Omni' class='headline'><em>Omni</em>search (search all bundles)</a></h3>
<h3 id='Omni'><a href='#Omni' class='headline'><em>Omni</em>Search (search all bundles)</a></h3>

By default you are only searching in the loaded bundles, you can however search in all bundles using the following methods:

Expand Down Expand Up @@ -307,14 +312,14 @@ <h3 id='Omni'><a href='#Omni' class='headline'><em>Omni</em>search (search all b

<h3 id='ColumnSearch'><a href='#ColumnSearch' class='headline'><em>Column</em>Search (search specific part of a snippet)</a></h3>

By default Lintalist tries to find matches in <em>part1, part2</em>, and <em>shorthand</em> of a snippet while searching.
By default Lintalist tries to find matches in <em>part1, part2</em>, and <em>shorthand</em> of a snippet <a href='#SearchSnippets'>while searching</a>.

When you start your query with a number (1 to 5), followed by a predefined character (<b style='color:#c00;'></b>&lt;</b> by default, ColumnSearchDelimiter in the settings) Lintalist will search in a specific part of a snippet. To disable this feature erase the ColumnSearchDelimiter in the settings.

Query: state -> will find "state" in part1, part2, and shorthand of a snippet
Query: 1<b style='color:#c00;'>&lt;</b>state -> will find "state" in <b>only</b> if it it is <b>part1</b> of a snippet
Query: 1<b style='color:#c00;'>&lt;</b>state -> will find "state" <b>only</b> if it is found in <b>part1</b> of a snippet

1 to 5 refers to the <a href="#SnippetsBundles">"part" or "section"</a></a> of a snippet:
1 to 5 refers to the <a href="#SnippetsBundles">"part" or "section"</a> of a snippet:

1&lt; Part1
2&lt; Part2
Expand Down
5 changes: 3 additions & 2 deletions lintalist.ahk
Expand Up @@ -4,7 +4,7 @@ Name : Lintalist
Author : Lintalist
Purpose : Searchable interactive lists to copy & paste text, run scripts,
using easily exchangeable bundles
Version : 1.9.17
Version : 1.9.18
Code : https://github.com/lintalist/
Website : http://lintalist.github.io/
AutoHotkey Forum: https://autohotkey.com/boards/viewtopic.php?f=6&t=3378
Expand Down Expand Up @@ -42,7 +42,7 @@ PluginMultiCaret:=0 ; TODOMC

; Title + Version are included in Title and used in #IfWinActive hotkeys and WinActivate
Title=Lintalist
Version=1.9.17
Version=1.9.18

; Gosub, ReadPluginSettings

Expand Down Expand Up @@ -569,6 +569,7 @@ Else
OmniSearchText:=""
}

ColumnID:=""
LastText:=CurrText

ShowPreviewToggle=1
Expand Down
2 changes: 1 addition & 1 deletion version.ini
@@ -1,5 +1,5 @@
[settings]
version=1.9.17
version=1.9.18
auto=1
beta=0
; auto = 1 - automatic update possible, set to 0 to alert user to read the release notes
Expand Down

0 comments on commit 85516ee

Please sign in to comment.