ManiacDC / TypingAid

Word AutoCompletion Utility
http://www.autohotkey.com/board/topic/49517-ahk-11typingaid-v2200-word-autocompletion-utility/
GNU General Public License v3.0
138 stars 45 forks source link

The wordlist should be indented evenly when using more than 10 items in the wordlist. #63

Open ManiacDC opened 9 years ago

ManiacDC commented 9 years ago

When there are more than 10 items in the wordlist, the words don't all start at the same position. They should.

ManiacDC commented 9 years ago

When using Fixed Width fonts, I've added 2 spaces before the words with no numbers. I haven't yet determined how to do this with variable width fonts.

https://github.com/ManiacDC/TypingAid/commit/ecaed65b3adfa8514f53d8ea6d01f259a6926e29

rommmcek commented 9 years ago
#NoEnv
FontSize := 16
Tabby := FontSize*0.8

Gui, BoxList: Margin, 1, 1
Gui, BoxList: -Caption
Gui, BoxList: Color, BFCDEA
Gui, BoxList: Font, s%FontSize%, Ariel
Gui, BoxList: add, ListBox, t%Tabby% w220 r6 hWndhlBoLis vLangua, 1`tpotato|2`tchives|`tcelery|`tparsley
Gui, BoxList: Show

Esc::
GuiClose:
ExitApp

image

ManiacDC commented 9 years ago

Done, tabs are now used. https://github.com/ManiacDC/TypingAid/commit/fb0c2fb7b7fed0b6e70f50e0446d5545b4f3ce97

Thanks, the language I typically work with can't deal with tabs, so I always forget I can use them.