How do you know when to use SHIFT+INSERT vs CTRL-V vs right-click-paste to paste?
Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?
clipboard
add a comment |
Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?
clipboard
add a comment |
Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?
clipboard
Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?
clipboard
clipboard
edited Feb 16 '11 at 16:27
8128
24.9k21101137
24.9k21101137
asked Feb 16 '11 at 16:15
dandan
1,24032135
1,24032135
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.
In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.
Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.
In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.
You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.
The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference toShift
+Insert
as mentioned in the question?
– MrWhite
Nov 2 '18 at 15:18
add a comment |
There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).
See https://wiki.archlinux.org/index.php/clipboard for more details.
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
add a comment |
Here's what I used to do:
Ctrl+Insert : Copy to the clipboard
Shift+Insert : PASTE from the clipboard
Shift+Delete : Cut TO the clipboard
Now I have an Apple Keyboard, I do:
(The apple keyboard does not have an insert key)
Ctrl+C to Copy to the clipboard
Ctrl+V to PASTE FROM the clipboard
Shift+Delete to cut TO THE clipboard.
In a terminal using Putty:
Select the text with the mouse copies directly to the clipboard
Right-Clicking anywhere in the terminal window does the paste
In a regular shell session:
I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard
I use Ctrl+Shift+V to paste.
add a comment |
As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.
I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f26655%2fhow-do-you-know-when-to-use-shiftinsert-vs-ctrl-v-vs-right-click-paste-to-paste%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.
In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.
Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.
In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.
You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.
The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference toShift
+Insert
as mentioned in the question?
– MrWhite
Nov 2 '18 at 15:18
add a comment |
This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.
In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.
Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.
In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.
You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.
The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference toShift
+Insert
as mentioned in the question?
– MrWhite
Nov 2 '18 at 15:18
add a comment |
This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.
In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.
Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.
In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.
You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.
The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.
In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.
Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.
In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.
You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.
The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
answered Feb 16 '11 at 17:25
Geppettvs D'ConstanzoGeppettvs D'Constanzo
16.4k43383
16.4k43383
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference toShift
+Insert
as mentioned in the question?
– MrWhite
Nov 2 '18 at 15:18
add a comment |
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference toShift
+Insert
as mentioned in the question?
– MrWhite
Nov 2 '18 at 15:18
3
3
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).
– blueyed
Oct 9 '13 at 22:29
This "answer" makes no reference to
Shift
+Insert
as mentioned in the question?– MrWhite
Nov 2 '18 at 15:18
This "answer" makes no reference to
Shift
+Insert
as mentioned in the question?– MrWhite
Nov 2 '18 at 15:18
add a comment |
There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).
See https://wiki.archlinux.org/index.php/clipboard for more details.
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
add a comment |
There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).
See https://wiki.archlinux.org/index.php/clipboard for more details.
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
add a comment |
There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).
See https://wiki.archlinux.org/index.php/clipboard for more details.
There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).
See https://wiki.archlinux.org/index.php/clipboard for more details.
answered Oct 9 '13 at 22:32
blueyedblueyed
6,26922231
6,26922231
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
add a comment |
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
2
2
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
I think this is the best answer.
– Wyatt8740
Oct 23 '14 at 21:35
add a comment |
Here's what I used to do:
Ctrl+Insert : Copy to the clipboard
Shift+Insert : PASTE from the clipboard
Shift+Delete : Cut TO the clipboard
Now I have an Apple Keyboard, I do:
(The apple keyboard does not have an insert key)
Ctrl+C to Copy to the clipboard
Ctrl+V to PASTE FROM the clipboard
Shift+Delete to cut TO THE clipboard.
In a terminal using Putty:
Select the text with the mouse copies directly to the clipboard
Right-Clicking anywhere in the terminal window does the paste
In a regular shell session:
I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard
I use Ctrl+Shift+V to paste.
add a comment |
Here's what I used to do:
Ctrl+Insert : Copy to the clipboard
Shift+Insert : PASTE from the clipboard
Shift+Delete : Cut TO the clipboard
Now I have an Apple Keyboard, I do:
(The apple keyboard does not have an insert key)
Ctrl+C to Copy to the clipboard
Ctrl+V to PASTE FROM the clipboard
Shift+Delete to cut TO THE clipboard.
In a terminal using Putty:
Select the text with the mouse copies directly to the clipboard
Right-Clicking anywhere in the terminal window does the paste
In a regular shell session:
I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard
I use Ctrl+Shift+V to paste.
add a comment |
Here's what I used to do:
Ctrl+Insert : Copy to the clipboard
Shift+Insert : PASTE from the clipboard
Shift+Delete : Cut TO the clipboard
Now I have an Apple Keyboard, I do:
(The apple keyboard does not have an insert key)
Ctrl+C to Copy to the clipboard
Ctrl+V to PASTE FROM the clipboard
Shift+Delete to cut TO THE clipboard.
In a terminal using Putty:
Select the text with the mouse copies directly to the clipboard
Right-Clicking anywhere in the terminal window does the paste
In a regular shell session:
I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard
I use Ctrl+Shift+V to paste.
Here's what I used to do:
Ctrl+Insert : Copy to the clipboard
Shift+Insert : PASTE from the clipboard
Shift+Delete : Cut TO the clipboard
Now I have an Apple Keyboard, I do:
(The apple keyboard does not have an insert key)
Ctrl+C to Copy to the clipboard
Ctrl+V to PASTE FROM the clipboard
Shift+Delete to cut TO THE clipboard.
In a terminal using Putty:
Select the text with the mouse copies directly to the clipboard
Right-Clicking anywhere in the terminal window does the paste
In a regular shell session:
I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard
I use Ctrl+Shift+V to paste.
edited Feb 22 '11 at 20:23
Marco Ceppi♦
37.1k24154192
37.1k24154192
answered Feb 16 '11 at 17:14
jfmessierjfmessier
4,17132026
4,17132026
add a comment |
add a comment |
As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.
I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
add a comment |
As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.
I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
add a comment |
As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.
I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.
As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.
I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.
answered Feb 16 '11 at 16:37
Javier RiveraJavier Rivera
30.1k978101
30.1k978101
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
add a comment |
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
They are just two different clipboards, as explained by blueyed.
– Pietro Battiston
May 9 '15 at 9:06
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f26655%2fhow-do-you-know-when-to-use-shiftinsert-vs-ctrl-v-vs-right-click-paste-to-paste%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