Which buttons are responsible for copying. Useful Windows Keyboard Shortcuts

Instead they use right button mouse and the “copy” command in the context menu. This method of copying text works great. But, unfortunately, it takes too much time. In this article you will learn how to copy text using the keyboard and save a lot of time on it.

How to copy text using the keyboard - the classic way

Copying text using the keyboard is done using CTRL-C. You need to select the text, hold down the CTRL key and then press the C key. Usually they use the left CTRL key, but this is not important, you can use both the left and right CTRL key.

After you have copied the text, you need to paste it somewhere else. This can also be done using the keyboard. In order to paste text using the keyboard, you need to press the key combination CTRL-V. As in the previous case, you can use either right or left CTRL.

Other ways to copy text using the keyboard

It should be noted that there are alternative ways copy text using the keyboard:

  • Combination Ctrl keys-Insert is similar to CTRL-C and can be used to copy text.
  • The Shift-Insert key combination is similar to CTRL-V and can be used to paste copied text.
  • And the Shift-Delete key combination is analogous to the Ctrl-X cut command.

In addition to combinations keys CTRL-C and CTRL-V, there are other very useful combinations:

  • Ctrl-A – Select all text. Typically used in conjunction with copying. Using combinations keys Ctrl-A and CTRL-C, you can quickly copy all the text.
  • Ctrl-X – Cut text. Copying text and deleting it from where it was before. Using combinations Ctrl-X keys and CTRL-V, you can quickly move the text to another location.
  • Ctrl-Z – Mark or take one step back. This combination allows you to quickly correct a mistake. For example, you removed part desired text. In such a situation, the combination will help you out Ctrl-Z keys, which will immediately return everything to its place.
  • CTRL-P – Print the document. Using this key combination, you can quickly send printed text to the printer.

Copying and pasting on a computer using the keyboard means saving selected text on the Internet, Word, or Minecraft into the computer’s memory buffer, text that is intended for pasting elsewhere.

The procedure for copying and pasting text is no different from, for example, a photo file from the keyboard - all this can be done quickly.

NOTE: You may not be aware that you can use the keyboard completely without a mouse –

Copy on the keyboard of a computer or laptop

To copy a fragment or file using the keyboard, click on its beginning (if it is text, if it is a photo, then select RMB) and select it with the mouse.

Then all you need to do is use the keyboard shortcut CTRL + C - all the data is placed on the clipboard and is waiting for action.

Paste on the keyboard of a computer or laptop

To paste from the computer memory (clipboard) that was previously copied there, click on the place where you want to place it.

Then use the CTRL + V button combination - everything will instantly appear in the desired location. If something is wrong, you can apply deletion.

To do this use Backspace button(deleting characters to the left of the insertion point), or click on Delete (deleting characters to the right of the insertion point).


To remove most of text: Click on the beginning of the text you want to delete and select the text with your mouse. Press Backspace or Delete.

ATTENTION! The item being deleted is not stored in the clipboard memory. To keep it there, use “Cut”.

To cut text, click on the beginning of the fragment you want to cut and select it with the mouse, and then use the combination Ctrl + X.

Selecting text using the keyboard

Sometimes you need to highlight large text, with the window scrolling, but it doesn’t want to scroll, then just press Ctrl + A.

If the cursor is in the table, then the first Ctrl + A selects the current cell, the other the next one, and so on gradually the entire table.

Copy one word on the keyboard

To select one word on either side of the cursor, hold Ctrl+Shift and press the Left Arrow key<- или топните кнопку со стрелкой вправо ->.

To select one character on either side of the cursor, hold down Shift button, and then press the left arrow key<- или нажмите кнопку со стрелкой вправо ->.

To select more than one character, press Shift and then click and hold the arrow keys.

To select part of a fragment on the line to the left of the cursor, hold down Shift key, and press the Home button.

Conclusion and conclusions

Not everyone knows that when working with the majority computer programs, it is quite possible to do without a mouse.

In the operating room Windows system, as well as in almost all programs basic commands can be performed using hot buttons.

It will be useful for any user to know that you can copy without a mouse. To do this, select the desired fragment.


You can do this either by holding down the left mouse button or by holding down the Shift key and moving through the text using the arrow keys.

Now, to copy the selected text, press two keys: Ctrl and C or Ctrl and Ins (Insert). The selected fragment will be copied to the operating system's clipboard.

Move the cursor to right place and paste the text using the following key combination: Ctrl and V or Shift and Ins (Insert). The previously copied piece of text will immediately appear. Good luck.

At frequent work With text information you just need to be able to reduce the time it takes to use certain operations. Using hotkeys and various combinations— will simplify working with text.

Keys and combinations for working with text

Highlight text using mouse or keyboard:

Place the mouse pointer at the beginning of the paragraph. Hold down the Shift key and press the Down key until the end of a paragraph or paragraphs. If the mouse cursor is at the end, then use Shift + “up”


Transitions through the document:

Moving between words:


Jumps to the beginning and end of the document:

  • Ctrl + Home – transfers cursor V start the entire document
  • Ctrl + End – the mouse pointer is set to the end.

If you work with text information on a MacBook, then you can go to the beginning of the line using combinations keys fn + left arrow (the cursor will be placed before the first character in the line), to the end of the line - fn + right arrow.

IN start/ end fragment you can get there by using a combination

fn + ctrl + left/right arrow.

Copy and paste text from the keyboard

Copy and paste algorithm:


Alternative combinations for copying: Ctrl + Ins (Insert), pasting: Shift + Ins.

When using the above combinations, the original text remains in place.

The Ctrl + X buttons will help you copy text and remove it from the current position. Selected the fragment is cut out(disappears), but is stored in the clipboard and can be restored in another position with using Ctrl+ V.

The Shift + Del combination deletes the selected fragment without placing it in the buffer, so pasting a cut fragment in this way is impossible.

Standard method

When working with text documents, there is standard way working with text:

Copying text from the Internet

Information contained on sites is highlighted in two ways: using Ctrl + A - select everything that is on open page, or using the mouse - the part that is required for copying.

Copying and pasting operations from Internet resources are carried out with using keyboards.

It is worth noting that some sites are protected from copying.

Paste on the command line

The first way is using the context menu:


Hot keys V command line: to copy - Enter, paste - Ctrl + V, select - Ctrl + M.

The second way is to install program AutoHotkey

AutoHotkey - free program with open source code for creating macros and automation, allows you to simplify repetitive tasks.

The program is available for download on the official website - https://autohotkey.com/download

In the folder " Downloads"The file AutoHotKey_1.1.29.01setup will appear.

Will launch it, allowing changes to be made.

Next, the default installation is installation with settings. It is usually installed on drive C:/Program files/AutoHotKey

Then you can run the program by selecting Run AutoHotKey in the dialog box.

The script for the program can be written:


#IfWinActive ahk_class ConsoleWindowClass
^V::
SendInput(Raw)%clipboard%
return
#IfWinActive

When pressed Win+Ctrl+V and Win+Shift+Insert copies information to the clipboard. IN active application Ctrl+V or Shift+Insert – insert information.

Compilation to executable file– launch Ahk2.Exe (Program files/AutoHotKey/Compiler)

Choose required file

Press the button Convert

After successful compilation, a dialog box will appear on the screen.

On the desktop icon will appear with the letter H:

We launch it and the hotkeys are ready to use.

In new versions Windows functions command line copy and paste is available in normal mode Ctrl + C, Ctrl + V. But sometimes this feature is disabled. To activate it need to:


After this, you can use standard combinations when working with the console.

Cut, copy and paste tools

You can cut and paste almost all window objects into another window. To do this, first select them. To perform these operations, use the appropriate keyboard shortcuts, menu commands Edit^Cut (Copy, Paste), as well as the corresponding toolbar buttons and commands context menus.

You can cut, copy and paste not only files and folders from windows, but also fragments text documents, as well as graphic and audio data.

Deleting objects

To delete the selected object, just click or . You can undo an action using a key combination .

Toolbars, the Edit menu, and context menus contain a Delete command.

Cutting out objects

When cutting, the selected object is copied to a special Windows storage XP-

clipboard.

To cut selected text, press and, without releasing it, press the key or key combination .

This operation can be performed from the context menu of the selected object, as well as

using the Cut command on the toolbar or the Edit menu.

You can also cut any selected object or group of objects using a keyboard shortcut .

To perform the paste operation, click on the insertion location, press .

Copying objects

When you cut and delete, the information disappears from the screen. When copied to the clipboard, the selected object still appears in the window.

To copy the selected object, press and, without releasing it, press the key (<0>- on numeric keypad or - on some other keyboards). The information will be placed on the clipboard. Copying is possible using a key combination .

To copy, you can use the Copy command of the Edit menu, context menu, or toolbar.

To copy the contents of the entire workspace to the clipboard Windows desktop XP (i.e. an image of the entire screen), just click on the table surface and press the key Sometimes you should also press the key at the same time as this key. . This instant “screenshot” is called a screenshot.

The screen copy is not sent to the printer.

In order to copy only the active one to the clipboard at the moment window (without everything surrounding it), press the key combination . The window will be copied to the clipboard. (In some cases the key is used , not .)

Inserting objects

Copied or cut object ending up in the clipboard Windows Exchange XP, ready for further travel. It can be inserted into almost any window.

To insert an object, click where you want to insert it, then press and, without releasing it, press the key . You can also insert an object using a keyboard shortcut .

You can use the Paste command in the Edit menu, context menu, or toolbar to paste an object from the clipboard.

To insert an object into programs, such as graphic programs, it is convenient to use the commands of the context menus of these programs.