What is the difference between lettered buffer and temporary
buffer?

Answers were Sorted based on User's Feedback



What is the difference between lettered buffer and temporary buffer?..

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

What is the difference between lettered buffer and temporary buffer?..

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

Post New Answer

More Vi Editor Interview Questions

What does the /text command do?

4 Answers  


What is the difference between ZZ and :wq commands?

4 Answers  


What is the format of vi command?

2 Answers  


What is the command used to replace many characters?

2 Answers  


what is the command used to append text after current line?

3 Answers  






what is the command used to set margin in vi editor?

2 Answers  


what are the two different modes in vi editor?

7 Answers  


What is the command used to display line numbers in vi editor?

5 Answers  


what are the different delete commands used in vi editor?

2 Answers  


How to enter from command mode to insertion mode?

3 Answers  


what does the c$ command do from command mode?

5 Answers  


what are the different commands used to quit from the vi editor?

1 Answers  


Categories
  • Vi Editor Interview Questions Vi Editor (21)
  • Visual Studio IDE Interview Questions Visual Studio IDE (207)
  • Editors AllOther Interview Questions Editors AllOther (1)