Cursor positioning thru VI Editor


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Cursor positioning thru VI Editor
# 1  
Old 08-10-2004
Cursor positioning thru VI Editor

Is there a way that I can position cursor at say line 23, column 2?

Thank you in advance.
# 2  
Old 08-10-2004
Code:
<ESC>:23<ENTER>2|

Cheers
ZB
# 3  
Old 08-10-2004
I inserted the code just as you told me to, and when I run the script (horolog), this is what I get:

A file or directory in the path name does not exist.
./horolog[7]: ESC: 0403-016 Cannot find or open the file. Am I doing something wrong?

Thank you.
# 4  
Old 08-10-2004
I think we are communicating at cross-purposes here.

What I gave you is not code. They are keystrokes to be entered during an interactive editing session using vi.

Are you trying to script a file edit?? vi is an interactive editor - you can script edits with "ed", however.

Or are you trying to open vi at a specific place in a file? If so you can try "vi +23 filename" to open the file at the 23rd line, but to my knowledge you cannot tell vi to open at a particular column.

With vim you can specify a "-s" option with a script. E.g.
vim -s script_file filename

I did, however, find the script option very unpredictable, for example, to move to the 2nd char of the 23rd line, I needed the command string "23G|k|l" inside a script. The extra "up" keystroke (k) doesn't make sense, but was needed to get it working properly.
# 5  
Old 08-10-2004
If you want to place the cursor while execution of a shell script, use "tput cup 23 2 " in the script while executing the script you will see that the cursor is in 23 /2.

ex: tput cup 23 2; echo "Enter Your Name..."

just try this otherwise if you want to go to 23 line and second character while scripting the shell in vi, the previous solution is right.



raguram R
# 6  
Old 08-10-2004
I was running a script written thru the vi editor. I tried the suggestion made by Raguram, and it worked. Thank you soooooooo much.

Latha
# 7  
Old 08-11-2004
try all the options of tput. Its a nice command to play with cursor positioning.

raguram R
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Complex positioning

I got these entries in a file alias server.domain.com='ssh 192.168.1.1@user1 ' alias server1.domain.com='ssh user2 @192.168.1.1' alias server1.domain.com='ssh user3@192.168.1.1' In the above lines, last line is the correct format. The first is IP@username, has got a space after the... (9 Replies)
Discussion started by: anil510
9 Replies

2. UNIX for Dummies Questions & Answers

positioning words in a line

I have problem with this for last few days and I would really be grateful if you can help me :wall::wall::wall::wall::wall: I have sets of files in one directory, and each of them have few lines each one of these lines has 1 or more occurrence of words Y = I need to find the position of the... (10 Replies)
Discussion started by: A-V
10 Replies

3. UNIX and Linux Applications

Passing the value of a cursor to another cursor

i have 2 cursors. i want to assign the value of first cursor(employee_id) to the where condition of cursor c2(please refer the bold statement). how do i do if i want to assign the value of c1 to where condition of cursor c2? declare cursor c1 IS select employee_id from employee cursor c2... (1 Reply)
Discussion started by: vkca
1 Replies

4. Shell Programming and Scripting

Tab positioning

xx00102 1(SG): xx00102 3(SG): xx00115 lan900: xx00115 lan901: xx00116 1(SG): xx00116 3(SG): the boxes are echoed on the same line with one \t. Is there anyway to get all the boxes to line up? Or possibly is there a way to fix the position of something... (3 Replies)
Discussion started by: trimike
3 Replies

5. Shell Programming and Scripting

cursor positioning

Hi All, please help me to know how to move the cursor to the desired position? For example, in a shell script, I am displaying echo "\t Enter your Name:" please help me how to move cursor near the first word. for example, if the output is as below ... (3 Replies)
Discussion started by: little_wonder
3 Replies

6. UNIX for Dummies Questions & Answers

Vi editor : Knowing the current cursor position

Hi All, In VI editor, to know the line number at any instant we use ctrl+g Similarly, to know the current coulmn number what shall we use?? If not direct key controls like ctrl+g, Is there any comands that could be executed in colon or ex mode of VI to know the current column position???... (1 Reply)
Discussion started by: ramkrix
1 Replies

7. Shell Programming and Scripting

E:348 no string under cursor error comes in vi editor in cygwin

when i open a file to edit and type i to insert and the type # for #!/bin/bash in vi and vim editor the message come that no string under cursor plz somebody help (0 Replies)
Discussion started by: mrityunjay22
0 Replies

8. Programming

positioning cursor

I am using curses.h and signals.h to control output to screen. My code displays an unchanging prompt that waits for user input. Meanwhile alarm signals are being generated that cause other ancillary messages to appear at other locations on the screen at various times. The problem I have is with... (2 Replies)
Discussion started by: enuenu
2 Replies

9. UNIX for Dummies Questions & Answers

Cursor Positioning

Can anyone tell me how to ouput the current cursor coordinate? I have tried using tput sc and tput rc. However I want to know what the coordinate is. Thanks. (1 Reply)
Discussion started by: bestbuyernc
1 Replies

10. UNIX for Dummies Questions & Answers

Positioning curser at EOF in vi

Hi there, Is there a way to position the cursor at EOF in vi, I know from the man pages how to position the cursor at the end of a paragraph, but what about the EOF (End Of File). Regards (6 Replies)
Discussion started by: JimJim
6 Replies
Login or Register to Ask a Question