Package: tree-view-copy-relative-path #233
-
In Atom, there was this package called tree-view-copy-relative-path that was super useful in big projects having a deep tree structure. This package caused an additional context-menu-item to be located in the context menu (that's produced when right-clicking a file from the tree on the left-side of atom); the menu option was "Copy Relative Path". Upon clicking it, it would copy that file's relative path (relative to the file you're currently editing in atom) into the clipboard. Then, you could paste into an include statement (for example). Super useful! I love js, but those relative paths in include statements aren't fun: I still have my .atom folder, and I'm sure this plugin must be buried somewhere within it. Can I transfer it over to the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
If you go into your Pulsar settings and switch to the Install pane, you should be able to search for If that didn't work, you could install straight from GitHub: ppm install vladimir-tikhonov/tree-view-copy-relative-path And if that didn't work… then, yes, you could copy from |
Beta Was this translation helpful? Give feedback.
If you go into your Pulsar settings and switch to the Install pane, you should be able to search for
tree-view-copy-relative-path
and install it from there. I just tried it and it seems to install fine. (I see it listed on the package site, though you might get an error from that link — we're having some devops difficulties that are hard to troubleshoot.)If that didn't work, you could install straight from GitHub:
And if that didn't work… then, yes, you could copy from
~/.atom/packages/tree-view-copy-relative-path
to~/.pulsar/packages/tree-view-copy-relative-path
. But if one of those other methods somehow doesn't work, please le…