Use ctrl left/right to go to tabs

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Use ctrl left/right to go to tabs

Post by carter »

Use ctrl left/right arrow to go to tabs

highend
Posts: 13311
Joined: 06 Feb 2011 00:33

Re: Use ctrl left/right to go to tabs

Post by highend »

Not possible, ctrl + 1, 2, ... aren't reassignable
One of my scripts helped you out? Please donate via Paypal

carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Re: Use ctrl left/right to go to tabs

Post by carter »

pls add it

carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Re: Use ctrl left/right to go to tabs

Post by carter »

Sorry,i said i want ctrl left/right to go to tabs,how? and u are saying ctrl + 1,2 aren't reassignable

highend
Posts: 13311
Joined: 06 Feb 2011 00:33

Re: Use ctrl left/right to go to tabs

Post by highend »

Again, not possible, these shortcuts (ctrl+left/right) aren't customizable. Use e.g. AHK to do this...
One of my scripts helped you out? Please donate via Paypal

carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Re: Use ctrl left/right to go to tabs

Post by carter »

would u write an ahk

highend
Posts: 13311
Joined: 06 Feb 2011 00:33

Re: Use ctrl left/right to go to tabs

Post by highend »

No, not interested in this functionality for myself.
One of my scripts helped you out? Please donate via Paypal

carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Re: Use ctrl left/right to go to tabs

Post by carter »

I mean for me,pls write

highend
Posts: 13311
Joined: 06 Feb 2011 00:33

Re: Use ctrl left/right to go to tabs

Post by highend »

As I already said, no.
One of my scripts helped you out? Please donate via Paypal

Gandolf

Re: Use ctrl left/right to go to tabs

Post by Gandolf »

You can try this. I don't know if it will work since XY won't run on my professional system and I haven't got access, at the moment, to a machine that it will run on.

Code: Select all

#ifWinActive ahk_class ThunderRT6FormDC
^right::	;next tab
	SendInput, {CTRLDOWN}{TAB}{CTRLUP}
Return

^left::	;previous tab
	SendInput, {CTRLDOWN}{SHIFTDOWN}{TAB}{CTRLUP}{SHIFTUP}
Return

#IfWinActive

WirlyWirly
Posts: 195
Joined: 21 Oct 2020 23:33
Location: Through the Looking-Glass

Re: Use ctrl left/right to go to tabs

Post by WirlyWirly »

I use an AHK script to emulate vim-like navigation across my system. Here's a snippet of that, but changed to use the arrow keys for tab switching...

Code: Select all

#SingleInstance Force
#Persistent
SetKeyDelay, 0

GroupAdd, explorer, ahk_exe XYplorer.exe

#IfWinActive ahk_group explorer
^Left::^+Tab ; Previous tab
^Right::^Tab ; Next tab
#IfWinActive

Gandolf

Re: Use ctrl left/right to go to tabs

Post by Gandolf »

I thought about key remappings, but haven't used it much. Looks neat.

highend
Posts: 13311
Joined: 06 Feb 2011 00:33

Re: Use ctrl left/right to go to tabs

Post by highend »

You should at least improve it by only making the hotkeys active when XY is e.g. not in (serial) rename mode^^
One of my scripts helped you out? Please donate via Paypal

WirlyWirly
Posts: 195
Joined: 21 Oct 2020 23:33
Location: Through the Looking-Glass

Re: Use ctrl left/right to go to tabs

Post by WirlyWirly »

That's the goal! The other day I was reading through the code of CustomInlineRenameKeys to see how he got it to detect when an input field is active in xyplorer. I thought I understood, tried it a few times, but no dice. Still working on that. At the moment I'm just pressing i for 'insert mode' (A.K.A suspend the script).

carter
Posts: 92
Joined: 10 Jul 2019 16:37
Location: w10,64b

Re: Use ctrl left/right to go to tabs

Post by carter »

@wirly -- Many thx it's working

Post Reply