Mike Starke wrote: > I would like to map the key in vim to insert > the prsent working directory `pwd` > > How would I construct that line in my .vimrc? > Try something like: nmap :read !pwd imap :read !pwd The two lines are the same except nmap changes the key for "normal" mode, and imap changes it for "insert" mode. > Does anyone have a good web site that deals with > the .vimrc file and some easy to follow examples, etc.? > I have found that the online documentation from ":help" is actually pretty thorough, but I'm sure there are some good sites out there. (I'm really more of an emacs fan...) -duncan