Search found 4165 matches

by bdeshi
20 Jun 2019 10:52
Forum: Script Exchange
Topic: Undocumented script commands - Suggestions
Replies: 114
Views: 74099

Re: Undocumented script commands - Suggestions

dbcsdecode() Decodes a string from specific codepage. Syntax dbcsdecode(string, [codepage], [hexdump]) string the string to decode codepage the codepage to decode from if 0, the current locale codepage is applied [citation needed] hexdump create hexdump for debug Return The decoded string. Examples...
by bdeshi
20 Jun 2019 10:51
Forum: Script Exchange
Topic: Undocumented script commands - Suggestions
Replies: 114
Views: 74099

Re: Undocumented script commands - Suggestions

dbcsencode() Encodes a string into specific codepage. Syntax dbcsencode(string, [codepage], [hexdump]) string the string to encode codepage the codepage to encode into if 0, the current locale codepage is applied [citation needed] hexdump create hexdump for debug Return The encoded string. Examples...
by bdeshi
20 Jun 2019 10:48
Forum: Script Exchange
Topic: Undocumented script commands - Suggestions
Replies: 114
Views: 74099

Re: Undocumented script commands - Suggestions

showcommandfromotherinst Toggles a debug flag to display commands passed to XYplorer from the command line. Syntax showcommandfromotherinst [state] state 1 or 0 enables or disables the feature. empty value toggles the feature. Examples ::showcommandfromotherinst; // toggle ::showcommandfromotherins...
by bdeshi
20 Jun 2019 10:46
Forum: Script Exchange
Topic: Undocumented script commands - Suggestions
Replies: 114
Views: 74099

Re: Undocumented script commands - Suggestions

The most glorious command
curdir
Displays current directory path in a popup message box.
Syntax

Code: Select all

curdir
Examples

Code: Select all

curdir;
Note by admin:
No, it just returns <xypath>. It's a forgotten remains from some debugging and totally useless now. I will remove it. :)
by bdeshi
20 Jun 2019 09:58
Forum: Wishes
Topic: Folder jumping and Z script
Replies: 7
Views: 1962

Re: Folder jumping and Z script

Thanks, works fine! :tup:
by bdeshi
20 Jun 2019 09:57
Forum: Script Exchange
Topic: zump.xys - z-like recent locations jumping
Replies: 3
Views: 3012

Re: zump.xys - z-like recent locations jumping

v1.2.0 can search history in addition to recent locations. This is disabled by default. History items always come after recents. History means current pane's global history only. fixed parsing of "\"-format patterns. Removed a stray step; statement Oh and this requires at least XYplorer v...
by bdeshi
18 Jun 2019 17:15
Forum: Script Exchange
Topic: [DEFUNCT] VirusTotal Reporter for XYplorer
Replies: 41
Views: 18479

Re: VirusTotal Reporter for XYplorer

Okay, not some great news. The current api is at version 2, and can be utilized by xyscripts without external assistance, but it's going to be deprecated when the beta v3 become stable. The v3 api is POST-based and the response is in json which means I'd have to include possibly multiple external ut...
by bdeshi
18 Jun 2019 16:24
Forum: Script Exchange
Topic: zump.xys - z-like recent locations jumping
Replies: 3
Views: 3012

Re: zump.xys - z-like recent locations jumping

v1.0.1
  • fixed erratic detection of /n & /-n , ie, index options.
  • fixed off-target index selection in matches.
by bdeshi
18 Jun 2019 16:16
Forum: Wishes
Topic: Folder jumping and Z script
Replies: 7
Views: 1962

Re: Folder jumping and Z script

eh, recent locations is already available, you meant hotlist? :bug:
admin wrote: 18 Jun 2019 13:18 History can be tab bound
Yeah, and who disables that.
How do you feel about something like this: tab('get', 'history', $tabindex);
by bdeshi
18 Jun 2019 13:14
Forum: Wishes
Topic: Folder jumping and Z script
Replies: 7
Views: 1962

Re: Folder jumping and Z script

I've written a proof-of-concept script here: viewtopic.php?f=7&t=20590&p=170466#p170466

Don, could you let scripts see the history and the hotlist?
by bdeshi
18 Jun 2019 13:10
Forum: Script Exchange
Topic: zump.xys - z-like recent locations jumping
Replies: 3
Views: 3012

zump.xys - z-like recent locations jumping

a simple approximation of github:rupa/z for XYplorer. Navigates to most recent location matching given patterns. in short, type @z foo bar and jump to most-recent location with "foo" and "bar" in path. Installation zump runs as an alias. Enter this in the addressbar to define the...
by bdeshi
16 Jun 2019 20:14
Forum: Script Exchange
Topic: [DEFUNCT] VirusTotal Reporter for XYplorer
Replies: 41
Views: 18479

Re: VirusTotal Reporter for XYplorer

Oh yes, I'd seen their api upgrades (and no this script doesn't work with that any more), but never got around to reading more or upgrading the script. Thanks for the bump, I'll see what I can do.
by bdeshi
16 Jun 2019 14:27
Forum: Bug Reports
Topic: [CLOSED] ABAutoWildCards doesn't seem to work anymore
Replies: 2
Views: 847

Re: ABAutoWildCards doesn't seem to work anymore

Ah, ok.

Actually I think this feature request can be a very good upgraded replacement to auto wildcards.
by bdeshi
16 Jun 2019 09:41
Forum: Wishes
Topic: Folder jumping and Z script
Replies: 7
Views: 1962

Re: Folder jumping and Z script

This is a very cool idea. I regularly use z in my shell. Something similar can be written as an interesting script project, but scripted solutions are going to be severely limited, as neither the hotlist nor the history can be read by scripts at the moment (afair); and furthermore, recentlocations, ...
by bdeshi
16 Jun 2019 09:14
Forum: Bug Reports
Topic: [CLOSED] ABAutoWildCards doesn't seem to work anymore
Replies: 2
Views: 847

[CLOSED] ABAutoWildCards doesn't seem to work anymore

v15.00.0102 - 2015-03-13 16:55 + Added tweak to support auto-wildcards in Address Bar locations. ABAutoWildcards=1 [...] Examples: - "E:\Test\drop\folder1\95" goes to "E:\Test\drop\folder1\6950" if "E:\Test\drop\folder1\95" does not exist. v15.00.0103 - 2015-03-13 22:2...