LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 02-01-2010, 09:10 AM   #1
Ajit Gunge
Member
 
Registered: Jan 2008
Location: Pune
Distribution: RHEL,fedora
Posts: 253
Blog Entries: 1

Rep: Reputation: 21
Question in Vi editor


Hi,
I have been usign for quite a while now.I have a requirement I want to align few lines of code so is there any easy command for this one.Let me expalin you my problem in detail.

Suppose if I have a piece of code in C like this one

int funct()
{
some code
if(x==y)
{
........
........
}
}

this is a properly aligned code now due to some reason I have to change some condition and the alignment is to be changed accoordingly suppose above the if case is removed than is there any way to align the ..... with that some code.Please help?

Thanks,
Ajit
 
Old 02-01-2010, 09:45 AM   #2
worm5252
Member
 
Registered: Oct 2004
Location: Atlanta
Distribution: CentOS, RHEL, HP-UX, OS X
Posts: 567

Rep: Reputation: 57
Well everything appears aligned to me because you did not put it in [ code ][ /code ] tags. Alignment is easy to modify using nano as it supports tabs. I would say use nano instead of vi to adjust.
 
Old 02-01-2010, 10:06 AM   #3
jschiwal
LQ Guru
 
Registered: Aug 2001
Location: Fargo, ND
Distribution: SuSE AMD64
Posts: 15,733

Rep: Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682Reputation: 682
I can never remember some of the options when I need them and use the substitute command.
For example:
:.,+8s/^/\t/
will insert a tab from the current position plus 8 lines at the beginning of the line.
You could instead:
:12,17s/^ //
to remove 4 spaces in lines 12-17.

You can use
:nu or :.,+15nu
to print line numbers before the lines. This can allow you to learn which line number range to use.

You can also use patterns.
/open(/,/close(/s/^/\t/
Will insert a tab in the lines from one matching "open(" and one matching "close("

This will remove a tab between the lines matching "funt(" and "b=c" inclusively.
/funt(/,/b=c/s/\t//

If you have a blank line between blocks of code, you can use:
.,/^$/
to match from the current line to the blank line.

---
Also look at the "indent" program. It will re-indent C code.

Last edited by jschiwal; 02-01-2010 at 10:08 AM.
 
Old 02-01-2010, 10:22 AM   #4
carbonfiber
Member
 
Registered: Sep 2009
Location: Sparta
Posts: 237

Rep: Reputation: 46
Perhaps the == command will help. Example usage:

Phase 1: write bad program

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
        if (-1 < argc)
                printf("Hello, world!\n")
}
Phase 2: D'oh!
Phase 3: delete if

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
                printf("Hello, world!\n")
}
Phase 4: (whilst in command mode) for example: press 6 (we have 6 lines), then press =, then press =, result:

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
        printf("Hello, world!\n")
}
 
Old 02-01-2010, 10:22 AM   #5
carbonfiber
Member
 
Registered: Sep 2009
Location: Sparta
Posts: 237

Rep: Reputation: 46
dup
 
Old 02-01-2010, 12:09 PM   #6
Ajit Gunge
Member
 
Registered: Jan 2008
Location: Pune
Distribution: RHEL,fedora
Posts: 253

Original Poster
Blog Entries: 1

Rep: Reputation: 21
Quote:
Originally Posted by carbonfiber View Post
Perhaps the == command will help. Example usage:

Phase 1: write bad program

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
        if (-1 < argc)
                printf("Hello, world!\n")
}
Phase 2: D'oh!
Phase 3: delete if

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
                printf("Hello, world!\n")
}
Phase 4: (whilst in command mode) for example: press 6 (we have 6 lines), then press =, then press =, result:

Code:
#include <stdio.h>

int main(int argc, char *argv[])
{
        printf("Hello, world!\n")
}
Carbonfiber do I have to run :== in the vi editor and it will to the alignment is it what you are saying.
 
Old 02-01-2010, 12:21 PM   #7
carbonfiber
Member
 
Registered: Sep 2009
Location: Sparta
Posts: 237

Rep: Reputation: 46
:-/ No. For example, move to the line you wish to indent. Make sure you are in command mode (not insert mode). Press =, then.. press = again. No :.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Question about Kate or another Editor FredJones Linux - Newbie 2 05-19-2008 01:45 PM
Nano Editor Question swamprat SUSE / openSUSE 7 01-17-2007 04:24 PM
Simple question about the vi text editor otacon 14112 Linux - Software 5 10-05-2006 01:32 AM
vi editor wc question maelstrombob Linux - Newbie 2 11-09-2003 07:57 PM
vi editor question lpriyamb Linux - Software 4 09-23-2003 01:22 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 11:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration