> when i press the end key i get F on the line above
> what should i add /set to make and and home key work
> Iam using a dell keyboard so macros/tricks for making pageup pagedown
> is also appriciated.

It would help to know what OS and whether you're using GVim or 
console-vim.  This sounds like a timeout issue:

   :help 'timeoutlen'

which you would see exhibited more frequently on slow connections 
(e.g. console vim over a SSH network connection).  However if 
you're using GVim or running on Win32, these settings aren't 
apropos, so the solution may be elsewhere such as mappings.

If the timeoutlen isn't the culprit, check your mappings. 
Examine the output of

   :map!
   :map

to see if there's anything mapped such as

   map <end> OF

that would cause the behavior you're seeing.  You can also test 
this mapping behavior by starting vim without any vimrc processing:

   vim -u NONE file.txt

to see if that solves the problem.

-tim




--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to