VIM, autocomplete before a word


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers VIM, autocomplete before a word
# 1  
Old 07-03-2010
Lightbulb VIM, autocomplete before a word

Hi there,

I'm learning PHP now. $var_name is how to declare a variable.

I was wondering if there is any convenient way in vim to autocomplete the dollar sign($) before a word.

Something like, after typing var_name, then press some key, for example Tab, to automatically add a doller sign exactly before the word var_name.

Thanks in advance.
# 2  
Old 07-03-2010
Put this line in your ~/.vimrc:
Code:
inoremap <TAB> <ESC>bi$

And restart vim.
This User Gave Thanks to bartus11 For This Post:
# 3  
Old 07-03-2010
actually you should do the other way ?!

Like, when you type $va you should expect it to complete the $var_name as it reduces lot of keyings. So if that is the thing which you can do with CTRL+X CTRL+N, and other CTRL+X completions.
# 4  
Old 07-03-2010
Quote:
Originally Posted by thegeek
actually you should do the other way ?!

Like, when you type $va you should expect it to complete the $var_name as it reduces lot of keyings. So if that is the thing which you can do with CTRL+X CTRL+N, and other CTRL+X completions.
How do you use CTRL+X to automatically add a $ before a word?

---------- Post updated at 09:42 PM ---------- Previous update was at 09:33 PM ----------

Quote:
Originally Posted by bartus11
Put this line in your ~/.vimrc:
Code:
inoremap <TAB> <ESC>bi$

And restart vim.
Thank, next time I will search the man page of vim.

I improved your version:
Code:
inoremap <F5> <ESC>bi$<ESC>wwa

it is more natural.
# 5  
Old 07-04-2010
Quote:
Originally Posted by hz_i3
How do you use CTRL+X to automatically add a $ before a word?
you misunderstood..

I have not answered your question, that is a suggestion to reduce more keystrokes. Kindly read my reply once again.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Cp command autocomplete

Hi I'm still new around bash and Ubuntu, but I was expecting for the "cp" command to have an autocomplete feature like the ls command. Should it, or I'm assuming too much? In case it doesn't have by default, is there a way to enable it? Cheers (2 Replies)
Discussion started by: blackfox2015
2 Replies

2. Shell Programming and Scripting

Tcsh complete (autocomplete) script

I cant figure out how the complete function works in tcsh. 1. I whould like it to complete after writing my_program.py with either start or stop. I have tried to do something like this in .cshrc.user: complete my_program.py \ 'c/start/' \ 'c/stop/' However i cant get it to... (1 Reply)
Discussion started by: mr_cad
1 Replies

3. UNIX for Dummies Questions & Answers

Find EXACT word in files, just the word: no prefix, no suffix, no 'similar', just the word

I have a file that has the words I want to find in other files (but lets say I just want to find my words in a single file). Those words are IDs, so if my word is ZZZ4, outputs like aaZZZ4, ZZZ4bb, aaZZZ4bb, ZZ4, ZZZ, ZyZ4, ZZZ4.8 (or anything like that) WON'T BE USEFUL. I need the whole word... (6 Replies)
Discussion started by: chicchan
6 Replies

4. Solaris

autocomplete Path on UNIX (TRU64)

Hi, i need autocmplete file_name/dir_name by TAB key. I work on UNIX (TRU64) and I just tried to type on .profile this setting: set autolist but it doesn't work. I think it is because this command doesn't belong to this UNIX version (sure it works for example on HP-UX). I need to set it... (0 Replies)
Discussion started by: D4vid
0 Replies

5. Solaris

Very Importan - Vim Settings - Error while opening a File using vim

I downloaded vim.7.2 and compiled the vim source . Added the vim binary path to PATH (Because iam not the root of the box) when i load the file using vim it throws me an error Error detected while processing /home2/e3003091/.vimrc: line 2: E185: Cannot find color scheme darkblue line... (0 Replies)
Discussion started by: girija
0 Replies

6. Shell Programming and Scripting

Shell Path Autocomplete w/ Variables

Suppose there exists a file, "/home/andrew/product/test". And suppose I set $FOO to "/home/andrew/product/"? I can't seem to type "$FOO/t" and then Escape (csh) in order to autocomplete. Is this possible in other shells? If not, then why? If so, then why can't csh do it, and how can I make... (1 Reply)
Discussion started by: acheong87
1 Replies

7. UNIX for Dummies Questions & Answers

How to configure the AutoComplete Command

Hello All, I'm using the Solaris 8 and I'd like to know how to configure my KSH to use the double ESC to complete the command automatically. Do you know how do it?? thanks. rgs, Paulo (1 Reply)
Discussion started by: PAulo Trombetta
1 Replies

8. UNIX for Dummies Questions & Answers

ksh autocomplete; f-secure/ssh character mapping

I'm coming from a c-shell environment where I was spoiled with the tab completion on the command line, only to find that using korn-shell I don't have this capability. The only thing I can find by googling is to use 'set filec' - but that doesn't work (and I think is only for c-shell anyway). ... (0 Replies)
Discussion started by: uacheesehead
0 Replies

9. Shell Programming and Scripting

History and AutoComplete

Hi, I enabled the Autocomplete of filename by the command set -o emacs But i couldn't enjoy the benifits of vi anymore. i.e I couldn't get the command history by pressing Esc and k. How to enjoy both of this features at a time.? Regards Karthik (3 Replies)
Discussion started by: fermisoft
3 Replies

10. Linux

autocomplete - bash

Hi all I have installed Red Hat Linux Advanced Server 2.1 onto a Proliant DL580 (dual XEON 2.8GHz processors). The bash shell is not autocompleting filenames/directorynames when I hit escape twice. History (via Ctrl+r works). Is there a setting somewhere to enable this? Thanks. (2 Replies)
Discussion started by: saabir
2 Replies
Login or Register to Ask a Question