Sponsored Content
Top Forums UNIX for Dummies Questions & Answers how can i search word that is under the cursor in VI Post 302136353 by kahuna on Monday 17th of September 2007 08:33:10 AM
Old 09-17-2007
Quote:
Originally Posted by kamitsin
use '*'
I tried this is vi and it doesn't seem to work. I did get it to work in vim.
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Find the current cursor word in backward

hello, i'm using the vi editor (not vim) and my main use in it is for C++ programming. After working on Visual Studio 2005 the auto-complete looks like paradise now... so i'm trying to find a way to have auto-complete also in the vi. i cant install vim and use the ctrl+P. i need to find a way... (1 Reply)
Discussion started by: Malbinir
1 Replies

2. Shell Programming and Scripting

Search the word to be deleted and delete lines above this word starting from P1 to P3

Hi, I have to search a word in a text file and then I have to delete lines above from the word searched . For eg suppose the file is like this: Records P1 10,23423432 ,77:1 ,234:2 P2 10,9089004 ,77:1 ,234:2 ,87:123 ,9898:2 P3 456456 P1 :123,456456546 P2 abc:324234 (2 Replies)
Discussion started by: vsachan
2 Replies

3. UNIX for Dummies Questions & Answers

Script to search for a particular word in files and print the word and path name

Hi, i am new to unix shell scripting and i need a script which would search for a particular word in all the files present in a directory. The output should have the word and file path name. For example: "word" "path name". Thanks for the reply in adv,:) (3 Replies)
Discussion started by: virtual_45
3 Replies

4. Shell Programming and Scripting

Search for the word and exporting 35 characters after that word using shell script?

I have a file input.txt which have loads of weird characters, html tags and useful materials. I want to display 35 characters after the word description excluding weird characters like $$#$#@$#@***$# and without html tags in the new file output.txt. Help me. Thanx in advance. My final goal is to... (11 Replies)
Discussion started by: sachit adhikari
11 Replies

5. Shell Programming and Scripting

Search for the word and exporting 35 characters after that word using shell script

I have a file input.txt which have loads of weird characters, html tags and useful materials. I want to display 35 characters after the word "description" excluding weird characters like $&lmp and without html tags in the new file output.txt. Help me. Thanx in advance. I have attached the input... (4 Replies)
Discussion started by: sachit adhikari
4 Replies

6. Shell Programming and Scripting

[Solved] Search for a word and print the next word

Hi, I am trying to search for a word and print the next word. For example: My text is "<TRANSFORMATION TYPE ="Lookup Procedure">" I am searching for "TYPE" and trying to print ="Lookup Procedure" I have written a code like following: echo $line | nawk... (4 Replies)
Discussion started by: sampoorna
4 Replies

7. Shell Programming and Scripting

Search for a specific word and print only the word from the input file

Hi, I have a sample file as shown below, I am looking for sed or any command which prints the complete word only from the input file. Ex: $ cat "sample.log" I am searching for a word which is present in this file We can do a pattern search using grep but I need to cut only the word which... (1 Reply)
Discussion started by: mohan_kumarcs
1 Replies

8. What is on Your Mind?

Updated Forum Search Index Min Word Length to 2 Chars and Added Quick Search Bar

Today I changed the forum mysql database to permit 2 letter searches: ft_min_word_len=2 I rebuilt the mysql search indexes as well. Then, I added a "quick search bar" at the top of each page. I have tested this and two letter searches are working; but it's not perfect,... (1 Reply)
Discussion started by: Neo
1 Replies

9. UNIX for Beginners Questions & Answers

How to search for a word in column header that fully matches the word not partially in awk?

I have a multicolumn text file with header in the first row like this The headers are stored in an array called . which contains I want to search for each elements of this array from that multicolumn text file. And I am using this awk approach for ii in ${hdr} do gawk -vcol="$ii" -F... (1 Reply)
Discussion started by: Atta
1 Replies
Term::ReadLine::Zoid::ViCommand(3pm)			User Contributed Perl Documentation		      Term::ReadLine::Zoid::ViCommand(3pm)

NAME
Term::ReadLine::Zoid::ViCommand - a readline command mode SYNOPSIS
This class is used as a mode under Term::ReadLine::Zoid, see there for usage details. DESCRIPTION
This mode provides a "vi command mode" as specified by the posix spec for the sh(1) utility. It intends to include at least all key-bind- ings mentioned by the posix spec for the vi mode in sh(1). It also contains some extensions borrowed from vim(1) and some private exten- sions. This mode has a "kill buffer" that stores the last killed text so it can be yanked again. This buffer has only one value, it isn't a "kill ring". KEY MAPPING
Since ViCommand inherits from MultiLine, which in turn inherits from Term::ReadLine::Zoid, key bindings are also inherited unless explic- itly overloaded. Control-d is ignored in this mode. escape Reset the command mode. return ^J Return the current edit line to the application for execution. ^Z Send a SIGSTOP to the process of the application. Might not work when the application ignores those, which is something shells tend to do. i Switch back to insert mode. I Switch back to insert mode at the begin of the edit line. a Enter insert mode after the current cursor position. A Enter insert mode at the end of the edit line. m Switch to multiline insert mode, see Term::ReadLine::Zoid::MultiLine. (private extension) M Switch to multiline insert mode at the end of the edit buffer. (private extension) R Enter insert mode with replace toggled on. (vim extension) # Makes current edit line a comment that will be listed in the history, but won't be executed. Only works if the 'comment_begin' option is set. = Display possible shell word completions, does not modify the edit line. Do pathname completion (using File::Glob) and insert the largest matching part in the edit line. * Do pathname completion but inserts all matches. [count] @ char Regard the contents of the alias _char as a macro with editing commands. This seems a rather obfuscated feature of the posix spec to me. See also below for the alias command. Note that the count argument is not posix compliant, but it seems silly not to use it. [count] ~ Reverse case for count characters. [count] . Repeat the last non-motion command. If no count is specified the original count of the command is used. v Edit the buffer with the editor specified by the "EDITOR" environment variable or the editor option, defaults to 'vi'. This function requires the File::Temp module from cpan, which in turn needs File::Spec and other packages. If these are not available this functions is disabled. [count] l [count] space Move the cursor to the right. [count] h Move the cursor to the left. [count] w [count] W Move the cursor to the begin of the next word or bigword. (A bigword exists of non-whitespace chars, while a word exists of alphanumeric chars only.) [count] e [count] E Move the cursor to the end of the current word or bigword. [count] b [count] B Move the cursor to the begin of the current word or bigword. ^ Move the cursor to the first non-whitespace on the edit line. $ Move the cursor to the end of the edit line. 0 Move the cursor to the begin of the edit line. [count] | Set the cursor to position count (1-based). [count] f char Set cursor to count'th occurrence of char to the right. The cursor is placed on char. [count] F char Set cursor to count'th occurrence of char to the left. The cursor is placed on char. [count] t char Set cursor to count'th occurrence of char to the right. The cursor is placed before char. [count] T char Set cursor to count'th occurrence of char to the left. The cursor is placed after char. [count] ; Repeat the last 'f', 'F', 't', or 'T' command. Count of last command is ignored. [count] , Like ';' but with direction reversed. [count] c motion Delete characters between the current position and the position after the motion, count applies to motion. After the deletion enter insert mode. The "motion" 'c' deletes the current edit line. C Delete from cursor to end of line and enter insert mode. S Delete current line and enter insert mode. [count] r char Replace the character under the cursor (and the count characters next to it) with char. [count] _ Insert a white space followed by the last (or count'th) bigword from the previous history entry ans enter insert mode. Quotes are not respected by this function. [count] x Delete count characters and place them in the save buffer. [count] X Delete count characters before the cursor position and place them in the save buffer. ('x' is like 'delete', 'X' like backspace) [count] d motion Delete from the current cursor position to the position resulting from count times motion. The deleted part will be placed in the save buffer. The "motion" 'd' deletes the current line. D Delete from the cursor position until the end of the line and put the deleted part in the save buffer. [count] y motion Yank (copy) characters from the current cursor position to the position resulting from count times motion to the save buffer. the "motion" 'y' yanks the current line. Y Like y but from cursor till end of line. [count] p Insert count copies of the the save buffer after the cursor. [count] P Insert count copies of the the save buffer before the cursor. u Undo the last command that changed the edit line. U Undo all changes. TODO all changes since when ? since entering the command mode ? [count] k [count] - Go count lines backward in history. [count] j [count] + Go count lines forward in history. [number] G Go to history entry number number, or to the first history entry. n Repeat the last history search by either the '/' or '?' minibuffers or the incremental search mode. N Repeat the last history search in the oposite direction. : Opens a command mini buffer. This is a very minimalistic execution environment that can for instance be used to modify options if the application doesn't provide a method to do so. Also it is used for quick hacks ;) The execution of this buffer happens entirely without returning to the application. (This is a vim extension) / Opens a mini buffer where you can type a pattern to search backward through the history. The search patterns are not globs (as posix would have them), but are evaluated as perl regexes. An empty pattern repeats the previous search. ? Like '/' but searches in the forward direction. ^A If cursor is on a number, increment it. (This is a vim extension) FIXME bit buggy ^X If cursor is on a number, decrement it. (This is a vim extension) FIXME bit buggy COMMANDS
These can be used from the ":" mini buffer. Some commands are borrowed from vim, but no guarantee what so ever. quit Return undef to the application (like '^D' in insert mode). set [+o|-o] [option=value] Set a key-value pair in the options hash When the arg '+o' is given (or the option is preceded by 'no') the option is deleted. Can be used to change the ReadLine behaviour independent from the application. ascii Output ascii values for the char in the edit line on the cursor position. testchr Wait for a character input and output ascii values for it. bindchr chr=keyname Map a char (or char sequence) to a key name. bindkey chr=sub { code } Map a char (or char sequence) to a key name. !, shell shellcode Eval a system command. The '%' character in this string will be replace with the name of a tmp file containing the edit buffer. After execution this tmp file will be read back into the edit buffer. Of course you can use an backslash to escape a literal '%'. Note that this tmp file feature only works if you have File::Temp installed. eval perlcode Eval some perlcode for the most evil instant hacks. The ReadLine object can be called as $self. alias char=macro Define a macro in an alias with a one character name. These can be executed with the '@' command. Non alphanumeric keys like " " and "e" can be inserted with the standard perl escape sequences. You need to use "\" for a literal ''. ATTRIBS
These can be accessed through the "Attribs" method (defined by the parent class). aliases This option is refers to a hash with aliases, used for the key binding for '@'. Note that all aliases have a one character name pre- fixed with a "_", this is due to historic implementations where the same hash is used for system aliases. We don't support aliases for the shell command, to have that you should define your own shell subroutine (see below). editor Editor command used for the 'v' binding. The string is run by the shell command. This option defaults to the EDITOR enviroment vari- able or to "vi %". shell The value can be set to a CODE ref to handle the shell command from the mini-buffer and the 'v' key binding. It should return the exit status of the command (like the perlfunc "system()"). AUTHOR
Jaap Karssenberg || Pardus [Larus] <pardus@cpan.org> Copyright (c) 2004 Jaap G Karssenberg. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Term::ReadLine::Zoid perl v5.8.7 2005-08-07 Term::ReadLine::Zoid::ViCommand(3pm)
All times are GMT -4. The time now is 11:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy