Skip to content
little-brother edited this page Oct 8, 2021 · 15 revisions

Filters

  • Use ABC as a column filter to find rows containing "ABC"
  • Use =ABC to find rows with column values equal to "ABC"
  • Use !ABC to find rows without "ABC"
  • Use >N or <N to find rows with more or less N

Hot keys

Key Description
Ctrl + Mouse wheel Change font size
Tab Switch focus to the next control
Ctrl + Tab Switch focus to the previous control

Settings

Check json-wlx-section in c:\Users\%User%\AppData\Roaming\GHISLER\lsplugin.ini

Key Default
font-size 16
splitter-width 200
max-file-size 1000000 (1mb)
max-column-width 300
tab-no 0

How to build

set "dir=%cd%"
echo %dir%

rem 32bit, mingw64
pushd c:\mingw64\mingw32\bin
c:\mingw64\mingw32\bin\i686-w64-mingw32-gcc.exe -Wl,--kill-at -shared -static %dir%/main.c %dir%/parson.c -o %dir%/json-wlx.wlx -m32 -s -Os -lgdi32 -lcomctl32

rem 64bit, mingw64
pushd c:\mingw64\mingw64\bin
c:\mingw64\mingw64\bin\x86_64-w64-mingw32-gcc.exe -Wl,--kill-at -shared -static %dir%/main.c %dir%/parson.c -o %dir%/json-wlx.wlx64 -m64 -s -Os -lgdi32 -lcomctl32
Clone this wiki locally