topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday April 18, 2024, 2:19 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: here is possibility to copy the same name without path ?  (Read 2724 times)

Judykator

  • Supporting Member
  • Joined in 2011
  • **
  • default avatar
  • Posts: 36
    • View Profile
    • Donate to Member
It is in the command "Copy target patch (ctrl+c). Is possibility to copy the same name without path ?

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: here is possibility to copy the same name without path ?
« Reply #1 on: March 02, 2017, 02:38 PM »
It is in the command "Copy target patch (ctrl+c). Is possibility to copy the same name without path ?

I don't think FARR has a built in hotkey for that. Here is a quick Autohotkey script to get what you want by quickly pressing ctrl+c twice a file is selected in FARR.

Code: Autohotkey [Select]
  1. ;double tap ctrl+c in FARR
  2. ;to turn clipboard full path into filename
  3. #IfWinActive, ahk_exe FindAndRunRobot.exe
  4. ~^c::
  5.   {
  6.    return
  7.   SplitPath, % clipboard , file
  8.   clipboard := file
  9.   }
  10. return
« Last Edit: March 03, 2017, 07:01 AM by Nod5 »