Lintalist

Results 141 comments of Lintalist

https://github.com/lintalist/lintalist/issues/236 > QuickSearchHotkey works correctly and inserts Part1. QuickSearchHotkey2 doesn't work correcly. If I call QuickSearchHotkey2 it behaves inconsistly. sometime it inserts > > * Part1 instead of Part2 >...

> I see, yes with shorthand it didn't work yet. Try adding these two lines beneath line 1997 in lintalist.ahk https://github.com/lintalist/lintalist/blob/master/lintalist.ahk#L1997 > > ``` > If QuickSearchHotkeyPart2 > PastText1=0 >...

Correct you are, it does work like that via the Tray menu option "check for updates" already https://github.com/lintalist/lintalist/blob/master/lintalist.ahk#L2175 I'll add it in the next update, thanks for reporting it.

I don't quite follow what you want, but what I do sometimes is (ab)use **Part2** or **Shorthand** to add a unique identifier. So for **Part1** `git checkout -b FEATURE BASE`...

That shouldn't actually be possible as it uses the total available width to calculate the available space for all columns making it "just fit" to avoid showing a horizontal scrollbar....

(DPI is scaling) - Looks like you have two monitors, my guess would be that each monitor may have a different dpi setting and it reads the one with the...

Sorry, I don't know anything about it nor such dll usage. So how would this work? You type: `wo3` in the search box, but you find snippets with `我` -...

Working AutoHotkey v1.1+ code ```AutoHotkey #Requires AutoHotkey v1.1.31+ string:="教师节快乐 我 sfla lfalksdf lkads flk a" TCMatchPath:=A_ScriptDir . "\tcmatch64.dll" g_TCMatchModule := DllCall("LoadLibrary", "Str", TCMatchPath, "Ptr") a:= TCMatch(string,"w j") msgbox % a...

Not sure what this AutoHotkey solution is https://www-autohotkey-com.translate.goog/boards/viewtopic.php?f=27&t=4255&p=24114&hilit=pinyin&_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en&_x_tr_pto=wapp#p24114 but if the dll can be avoided that would be "best" I'm guessing

Does this do the same as tcmatch? It searches the pinyin table for "unicode-hex-value firstletter" so `w` should match `我` The forum thread above searches for words as far as...