0

Possible Duplicate:
How do I join two lines in vi?

I have the following text:

the bunny
  is very cute

How can I quickly delete the \n\t between bunny and is?

Community
  • 1
  • 1
  • Link provided by @AndrewMarshall should be applicable here. – Ariel Apr 04 '12 at 04:21
  • Voted off topic. Using a text editor interactively is not programming. There is `:help`, and lots of web resources for Vim. RTFM. – Kaz Apr 04 '12 at 04:21
  • @Kaz With all due respect, there are other questions about Vim here and there is even a decently popular `vim` tag. –  Apr 04 '12 at 04:22
  • 2
    @Kaz: It has [been decided that Vim questions belong on Stack Overflow](http://meta.stackexchange.com/questions/25925/vim-questions-so-or-su) (this is an exception to the usual "programming related" requirement). – Greg Hewgill Apr 04 '12 at 04:26
  • @Kaz Definitely not off topic. The FAQ states questions about "software tools commonly used by programmers" are valid, and the meta question Greg referenced validates it with Vim specifically. – Andrew Marshall Apr 04 '12 at 04:29

1 Answers1

1

Type J (capital J) to join lines.

FDinoff
  • 30,689
  • 5
  • 75
  • 96
Kaz
  • 55,781
  • 9
  • 100
  • 149