sLister WLX plugin
Moderators: Hacker, petermad, Stefan2, white
Stupid question:
Does this plugin work?
On my Win8.1, TC8.5ß11 64bit, the TC hangs and I have to shut it down as soon as I try a PDF-file. And this is definitely related with this plugin.
What I did? Downloaded the plugin from http://www.totalcmd.net/plugring/slister.html and installed it.
Does this plugin work?
On my Win8.1, TC8.5ß11 64bit, the TC hangs and I have to shut it down as soon as I try a PDF-file. And this is definitely related with this plugin.
What I did? Downloaded the plugin from http://www.totalcmd.net/plugring/slister.html and installed it.

I think it's a Win8.1 issue, the devs only recently added Win8.1 support in the apps manifestDoes this plugin work?
On my Win8.1, TC8.5ß11 64bit, the TC hangs and I have to shut it down as soon as I try a PDF-file. And this is definitely related with this plugin.
http://code.google.com/p/sumatrapdf/source/detail?r=8495
Get an updated portable build, if you're using a 64 bit build the only place to get one is from xhmikosr his builds are nightly no stable
http://xhmikosr.1f0.de/sumatrapdf/ just get the file named SumatraPDF-2.5-x64.exe rename it to SumatraPDF.exe and replace the old one that comes with the plugin.
ps. On a side note the 32bit exe should work too so you could try and use an official exe from http://blog.kowalczyk.info/software/sumatrapdf/download-free-pdf-viewer.html get the portable version
ps.ps the last stable build doesn't have win8.1 support in the apps manifest only the recent nightlies do so that might not work.
sLister 1.1.2 x86 with SumatraPDF can press Esc to exit, sLister x64 with x64 SumatraPDF can press Esc to exit, but it's not work with sLister x64 and x86 SumatraPDF.
How to fix it?
I little thought and added SumatraPDFx64 with name SumatraP64.exe and then replaced "SumatraPDF.exe" on "SumatraP64.exe" in sLister.wlx64 (http://rghost.ru/57935760/image.png). It works
But two files SumatraPDF - not beautiful.
How to fix it?
I little thought and added SumatraPDFx64 with name SumatraP64.exe and then replaced "SumatraPDF.exe" on "SumatraP64.exe" in sLister.wlx64 (http://rghost.ru/57935760/image.png). It works

It works. Additionally, SumatraPDF also supports many ebook formats as well (QuickLister too!). Just add:Jon Canale wrote:Do we need a new topic for sLister?
Also, does this detect string look correct:
11_detect="MULTIMEDIA& (EXT="PDF" | EXT="DJVU" | EXT="DJV"| EXT="XPS" | EXT="CBZ" | EXT="CBR" )"
It looks a little different than other detect strings for other lister plugins, but maybe that's just the way the author coded it?
[face=courier]| EXT="EPUB" | EXT="MOBI" | EXT="AZW" | EXT="PRC" | EXT="FB2"[/face]
to sLister's detect string in wincmd.ini.
Regards,
Sergio
TCmd license #12059
TC11.03x86/x64 | Win11 Pro
Sergio
TCmd license #12059
TC11.03x86/x64 | Win11 Pro
I always disliked the standard zoom level and the plugin version seems to ignore the sumatra-settings.ini.
Here's a little patch to pass command line arguments to sumatra.exe:
Replacewith
Now you can add a "sumatraArgs" key to the slister.ini like so:
Maybe someone can refine and publish this.
Here's a little patch to pass command line arguments to sumatra.exe:
Replace
Code: Select all
swprintf_s(cmd,4096,L"%s -plugin %d \"%s\"",rpath,sLister,FileToLoad);
Code: Select all
wchar_t sumatraArgs[4096] = L"";
GetPrivateProfileStringW(L"slister", L"sumatraArgs", sumatraArgs, sumatraArgs, 4096, inipath);
swprintf_s(cmd, 4096, L"%s %s -plugin %d \"%s\"", rpath, sumatraArgs, sLister, FileToLoad);
Code: Select all
[slister]
;path=%COMMANDER_PATH%\utils\sumatrapdf\SumatraPDF.exe
sumatraArgs=-view "facing" -zoom "fit page"
;
;sumatraArgs samples:
;-view <view-mode>
;Sets the view mode for the first indicated file. Alternatives are "single page", "continuous single page", "facing",
; "continuous facing", "book view", "continuous book view".
;-zoom <zoom-level>
;Sets the zoom level for the first indicated file. Alternatives are "fit page", "fit width", "fit content" or any percentage value.
I have no idea how to implement that path but anyway I am so !!! happy that I found this plugin and of course the cool Sumatra pdf viewer.
I can now batch rename (manually^^) scanned pdf en masse.
I allows me to preview PDF and to rename the same without closing preview. Superb!
PS:
I need now an advanced rename options for TC. I assigned F2 to rename function. A nice to have option would be to have a list pop up when hitting F2 or better Shift F2 with a given list of keywords that also auto populates via copy n paste of text when renaming.
Why?
Cause I have hundreds of scanned pdf docs that mostly are to be renamed to the same name in parts.
I can now batch rename (manually^^) scanned pdf en masse.
I allows me to preview PDF and to rename the same without closing preview. Superb!
PS:
I need now an advanced rename options for TC. I assigned F2 to rename function. A nice to have option would be to have a list pop up when hitting F2 or better Shift F2 with a given list of keywords that also auto populates via copy n paste of text when renaming.
Why?
Cause I have hundreds of scanned pdf docs that mostly are to be renamed to the same name in parts.
dd
Thats normally a job for the TC multi rename tool and doesn't need any special other rename function.DickDiver wrote:I have no idea how to implement that path but anyway I am so !!! happy that I found this plugin and of course the cool Sumatra pdf viewer.
I can now batch rename (manually^^) scanned pdf en masse.
I allows me to preview PDF and to rename the same without closing preview. Superb!
PS:
I need now an advanced rename options for TC. I assigned F2 to rename function. A nice to have option would be to have a list pop up when hitting F2 or better Shift F2 with a given list of keywords that also auto populates via copy n paste of text when renaming.
Why?
Cause I have hundreds of scanned pdf docs that mostly are to be renamed to the same name in parts.
Horst.Epp,
Roman
That does not help if your workflow is to preview the file using Ctrl-Q and rename it according to the preview to some predefined strings.Thats normally a job for the TC multi rename tool and doesn't need any special other rename function.
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
I doesHacker wrote:Horst.Epp,That does not help if your workflow is to preview the file using Ctrl-Q and rename it according to the preview to some predefined strings.Thats normally a job for the TC multi rename tool and doesn't need any special other rename function.
Roman

I just mark the files I find while quick viewing and later on use the MRT to make the name changes of the marked files.
Works perfectly for me.
Horst.Epp,
Roman
A file needs to be called "an orange orange", another one "a red apple", a third one "a red orange" and a fourth one "apple and orange". How do you achieve this using MRT?I just mark the files I find while quick viewing and later on use the MRT to make the name changes of the marked files.
Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
Not at all, but the original poster said:Hacker wrote:Horst.Epp,A file needs to be called "an orange orange", another one "a red apple", a third one "a red orange" and a fourth one "apple and orange". How do you achieve this using MRT?I just mark the files I find while quick viewing and later on use the MRT to make the name changes of the marked files.
Roman
"Cause I have hundreds of scanned pdf docs that mostly are to be renamed to the same name in parts."
Thats perfect for MRT and RegEx
More info: http://ghisler.ch/board/viewtopic.php?p=319954#319954You'll need:
1. TC 8.52a or TC 9.0 rc3
2. sLister.wlx + SumatraPDF.exe
3. some PDF files
To do:
1. Start TC
2. Go into some dir with PDF files
3. Open quick view mode by Ctrl+Q (cursor is on highest ".." position)
4. Open small quick search box via [cm_ShowQuickSearch] or hotkey
5. Type some first letters of any existing file
6. (now TC moves cursor to one of these PDF and hangs)
Can plugin-writer (or someone else) fix that?