What is the difference between lettered buffer and temporary
buffer?
Answers were Sorted based on User's Feedback
Answer / jitendra babar
Temporary Buffer
Deleted or copied text goes into a temporary unnamed
buffer. The contents of the temporary buffer may be
retrieved by using the p or P commands.
Lettered Buffers
There are 26 lettered buffers (a-z). Contents of a lettered
buffer are saved until you copy or delete more characters
into it, or until you quit your current vi session.
eg.
From Command Mode
"ayy Copy (yank) a line into buffer letter "a"
"ap Put contents of lettered buffer a below the
current line
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ali ahsan
Temporary Buffers
dd( or followed by a number ndd) will cut the lines specified by n starting from current line and these lines will be stored into the temporary buffer until new lines are being cut
yy( or followed by a number nyy) will copy the lines specified by n starting from current line and these lines will be stored into the temporary buffer until new lines are being copied
p or P is used to use lines being stored in buffer
Lettered Buffers
There are 26 lettered buffers (a-z). Contents of a lettered buffer are saved until you copy or delete more characters into the same lettered buffer, or until you quit your current vi session.
eg.
From Command Mode
"anyy Copy (yank) n lines into buffer letter "a"
"ap Put contents of lettered buffer a below the
current line
and following command will not overridde a lettered buffer
bnyy Copy (yank) n lines into buffer letter "b"
"bp Put contents of lettered buffer a below the
current line
Is This Answer Correct ? | 1 Yes | 0 No |
How to return to shell without leaving vi editor?
what is the command used to append text after current line?
How to replace String "a" with String "b" in whole file of the vi editor?
what are the different delete commands used in vi editor?
Which command is used to replace many characters?
what is the command used to append to buffer?
what does the c$ command do from command mode?
How to enter from command mode to insertion mode?
What does the /text command do?
what are the two different modes in vi editor?
What is the difference between ZZ and :wq commands?
How to create a .exrc file in vi editor?