Straightforward way of copying text from byobu to system clipboard?
I frequently want to copy snippets of command outputs to the web browser. Doing so is nice and simple in gnome-terminal (mouse-select, right-click, copy) but seems to be not so straightforwardly possible in byobu.
The procedure for copying outlined in the docs is:
Enter scrollback using alt-pgup or alt-pgdn, press the spacebar to start highlighting text, use up/down/left/right/pgup/pgdn to select the text, and press enter to copy the
text. You can then paste the text using alt-insert or ctrl-a-].
However, this doesn't copy to system clipboard (and seems to involve quite a few keystrokes)
This source suggests using xsel
https://askubuntu.com/questions/33789/how-do-i-integrate-byobus-copy-buffer-with-the-x-clipboard
which doesn't work for me and would be rather less convenient anyway(what if I want to scroll up to several commands earlier that ran in a different context?)
What I would like is, ideally, a way to copy to the system clipboard that works in the same as gnome-terminal eg. highlight -> ctrl+shift+c or right-click copy or some way to integrate the byobu copy buffer with the system copy buffer.
I'm using Ubuntu 16.04 with Gnome and byobu 5.106-0ubuntu1
copy-paste byobu
add a comment |
I frequently want to copy snippets of command outputs to the web browser. Doing so is nice and simple in gnome-terminal (mouse-select, right-click, copy) but seems to be not so straightforwardly possible in byobu.
The procedure for copying outlined in the docs is:
Enter scrollback using alt-pgup or alt-pgdn, press the spacebar to start highlighting text, use up/down/left/right/pgup/pgdn to select the text, and press enter to copy the
text. You can then paste the text using alt-insert or ctrl-a-].
However, this doesn't copy to system clipboard (and seems to involve quite a few keystrokes)
This source suggests using xsel
https://askubuntu.com/questions/33789/how-do-i-integrate-byobus-copy-buffer-with-the-x-clipboard
which doesn't work for me and would be rather less convenient anyway(what if I want to scroll up to several commands earlier that ran in a different context?)
What I would like is, ideally, a way to copy to the system clipboard that works in the same as gnome-terminal eg. highlight -> ctrl+shift+c or right-click copy or some way to integrate the byobu copy buffer with the system copy buffer.
I'm using Ubuntu 16.04 with Gnome and byobu 5.106-0ubuntu1
copy-paste byobu
add a comment |
I frequently want to copy snippets of command outputs to the web browser. Doing so is nice and simple in gnome-terminal (mouse-select, right-click, copy) but seems to be not so straightforwardly possible in byobu.
The procedure for copying outlined in the docs is:
Enter scrollback using alt-pgup or alt-pgdn, press the spacebar to start highlighting text, use up/down/left/right/pgup/pgdn to select the text, and press enter to copy the
text. You can then paste the text using alt-insert or ctrl-a-].
However, this doesn't copy to system clipboard (and seems to involve quite a few keystrokes)
This source suggests using xsel
https://askubuntu.com/questions/33789/how-do-i-integrate-byobus-copy-buffer-with-the-x-clipboard
which doesn't work for me and would be rather less convenient anyway(what if I want to scroll up to several commands earlier that ran in a different context?)
What I would like is, ideally, a way to copy to the system clipboard that works in the same as gnome-terminal eg. highlight -> ctrl+shift+c or right-click copy or some way to integrate the byobu copy buffer with the system copy buffer.
I'm using Ubuntu 16.04 with Gnome and byobu 5.106-0ubuntu1
copy-paste byobu
I frequently want to copy snippets of command outputs to the web browser. Doing so is nice and simple in gnome-terminal (mouse-select, right-click, copy) but seems to be not so straightforwardly possible in byobu.
The procedure for copying outlined in the docs is:
Enter scrollback using alt-pgup or alt-pgdn, press the spacebar to start highlighting text, use up/down/left/right/pgup/pgdn to select the text, and press enter to copy the
text. You can then paste the text using alt-insert or ctrl-a-].
However, this doesn't copy to system clipboard (and seems to involve quite a few keystrokes)
This source suggests using xsel
https://askubuntu.com/questions/33789/how-do-i-integrate-byobus-copy-buffer-with-the-x-clipboard
which doesn't work for me and would be rather less convenient anyway(what if I want to scroll up to several commands earlier that ran in a different context?)
What I would like is, ideally, a way to copy to the system clipboard that works in the same as gnome-terminal eg. highlight -> ctrl+shift+c or right-click copy or some way to integrate the byobu copy buffer with the system copy buffer.
I'm using Ubuntu 16.04 with Gnome and byobu 5.106-0ubuntu1
copy-paste byobu
copy-paste byobu
asked Jan 3 at 11:25
LoopLoop
326
326
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
As pointed out in this comment, holding the shift key seems to be the solution to your problem. So:
Shift+F11 to zoom in on the split that you want to copy from
Shift+select what you want to copy
Shift+right click, copy (or by the way, Shift+Ctrl+C that also works in gnome-terminal)
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54021367%2fstraightforward-way-of-copying-text-from-byobu-to-system-clipboard%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
As pointed out in this comment, holding the shift key seems to be the solution to your problem. So:
Shift+F11 to zoom in on the split that you want to copy from
Shift+select what you want to copy
Shift+right click, copy (or by the way, Shift+Ctrl+C that also works in gnome-terminal)
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
add a comment |
As pointed out in this comment, holding the shift key seems to be the solution to your problem. So:
Shift+F11 to zoom in on the split that you want to copy from
Shift+select what you want to copy
Shift+right click, copy (or by the way, Shift+Ctrl+C that also works in gnome-terminal)
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
add a comment |
As pointed out in this comment, holding the shift key seems to be the solution to your problem. So:
Shift+F11 to zoom in on the split that you want to copy from
Shift+select what you want to copy
Shift+right click, copy (or by the way, Shift+Ctrl+C that also works in gnome-terminal)
As pointed out in this comment, holding the shift key seems to be the solution to your problem. So:
Shift+F11 to zoom in on the split that you want to copy from
Shift+select what you want to copy
Shift+right click, copy (or by the way, Shift+Ctrl+C that also works in gnome-terminal)
edited Jan 11 at 17:25
Loop
326
326
answered Jan 11 at 9:16
gcuendetgcuendet
26637
26637
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
add a comment |
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
Hi thanks for response. This works for allowing me to select and copy less than one line of text. If I try and copy multiple lines then the text will be copied across the boundaries of the different virtual terminal splits I have running. But reading on in that thread you link to, this can work if I zoom in on the current split with shift+F11 good enough :)
– Loop
Jan 11 at 13:17
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54021367%2fstraightforward-way-of-copying-text-from-byobu-to-system-clipboard%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown