Vim Tips Wiki
Register
Advertisement

Use this page to discuss script 2918 SpitVspit: multiple files splitting

  • Add constructive comments, bug reports, or discuss improvements (see the guideline).
  • Do not document the script here (the author should do that on vim.org).
  • This page may be out of date: check the script's vim.org page above, and its release notes.

Description[]

This is a little script I did because I have always wanted to type

:sp a.cpp b.hpp *.tex......

This does it now!

You just have to source this file in your vimrc and that will remap sp, vsp and e abbreviation to my functions.

Let me know if you find some bugs. Author: XonqNopp

Features[]

:(v)sp *.m new_file.pl hello_world.cpp
:e new_file.tex my_bib.bib *.sh

Install details[]

I don't know about what came in which version (I run the latest), but the commands you need for my script are very basic and I think they are in Vim for a long time now:

  • (v)split
  • substitute
  • command
  • cabclear
  • splitright/splitbelow
  • args/argadd
  • expand
  • next

Comments[]

Advertisement