Skip to content

Instantly share code, notes, and snippets.

@f000
Created January 26, 2015 21:05
Show Gist options
  • Save f000/ec6683c799d95ef9fb54 to your computer and use it in GitHub Desktop.
Save f000/ec6683c799d95ef9fb54 to your computer and use it in GitHub Desktop.
TextMate 2 – Copy current file path to clipboard
#!/usr/bin/env bash
[[ -f "${TM_SUPPORT_PATH}/lib/bash_init.sh" ]] && . "${TM_SUPPORT_PATH}/lib/bash_init.sh"
echo -n "$TM_FILEPATH" | pbcopy
echo "Path $TM_FILEPATH copied to clipboard."
@f000
Copy link
Author

f000 commented Jan 26, 2015

  1. Open Bundles/Edit Bundles...
  2. Press Cmd+N to create New Bundle
  3. Press Cmd+N to create Command
  4. Paste the code above to the bundle editor and set Input: Nothing, Output: Show in Tool Tip and set Key Equivalent to something like Cmd+Shift+C
  5. done

@GuiSim
Copy link

GuiSim commented Feb 26, 2015

Note that Cmd + Shift + C will not work in Java files as it conflicts with the Java Bundle Command "Copy Fully Qualified Class Name".

This can be avoided by using another shortcut for either the "Copy Current File Path" command or the "Copy Fully Qualified Class Name" command.

Thanks for this snippet, very useful.

@loadedsith
Copy link

thanks!

@ccmcbeck
Copy link

Nice.
Cmd + Shift + C conflicts with TextMate | Go | Computer
I use Alt + C

@ahmedfahmy94
Copy link

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment