Copy from Find Results
Little package to remove the line number when copying from the find in files panel
Details
Installs
- Total 809
- Win 449
- Mac 267
- Linux 93
Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime Copy from Find Results
Little package to remove the line number when copying from the find in files panel
Use
The command is designed to only work on the Find Results
tab and default to a normal copy otherwise.
It will transform this:
6 class CopyFromFindResultsCommand(sublime_plugin.TextCommand):
7: def run(self, edit):
8 self.view.run_command('copy')
to this:
class CopyFromFindResultsCommand(sublime_plugin.TextCommand):
def run(self, edit):
self.view.run_command('copy')
KeyBindings
There is no default shortcut, to add it open your User Keybindings file and add something like the following:
// Linux or Windows
{ "keys": ["ctrl+c"], "command": "copy_from_find_results",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.find-in-files" }]
}
// MacOS
{ "keys": ["super+c"], "command": "copy_from_find_results",
"context": [{ "key": "selector", "operator": "equal", "operand": "text.find-in-files" }]
}
using "context": [{ "key": "selector", "operator": "equal", "operand": "text.find-in-files" }]
it's being extra careful, you can leave that out and the package will check for Find Results
for you.
Outside Find in Files
If you want to use the package outside Find Results
you can add a the force
argument, like this:
// Linux or Windows
{ "keys": ["ctrl+alt+c"], "command": "copy_from_find_results",
"args": { "force": true }
}
// MacOS
{ "keys": ["super+alt+c"], "command": "copy_from_find_results",
"args": { "force": true }
}
Settings
{
// If set to false, it removes the dots added by sublime to mark the separation between matches in the same file.
"keep_intermediate_dots": false
}
Installation
PackageControl
If you have PackageControl installed, you can use it to install the package.
Just type cmd-shift-p
/ctrl-shift-p
to bring up the command pallete and pick Package Control: Install Package
from the dropdown, search and select the package and you're all set.
Manual
You can clone the repo in your /Packages
(Preferences -> Browse Packages…) folder and start using/hacking it.
cd ~/path/to/Packages
git clone git://github.com/NicoSantangelo/sublime-copy-from-find-results.git "Copy from Find Results"