Roald de Vries wrote: > I'm using a tab separated values file with pretty long lines > --- too long for my screen. Is it somehow possible to scroll > horizontally with the mouse?
I strongly recommend the amazing script at: http://vim.wikia.com/wiki/CSV If your file type is not recognised, you need to enter: :set ft=csv To tell it that you are using tab delimiters, enter: :Delimiter \t The tip has nothing to do with the mouse, but you can press keys H J K L to move cell-by-cell (like h j k l move character by character), and more. John --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
