![]() |
![]()
| ![]() |
![]()
NAMEvimpager - pager using vim and less.vim SYNOPSISvimpager [options] `some file' # or (this won’t always syntax highlight as well) cat `some file' | vimpager [options] For vimcat see here or `man vimcat'. RUN-TIME DEPENDENCIES
BUILD DEPENDENCIES
INSTALLOn Ubuntu or Debian, use the following to install a package:
To just build the `.deb' use make build-deb instead. Otherwise use `make install':
The following make settings are supported at make install time:
NOTE: you should make clean before modifying these make settings, as the `install' make target does not account for their change. If you got vimpager from the vim.org scripts section, just put it somewhere in your PATH, e.g.:
In your ~/.bashrc add the following:
PATHOGEN INSTALLATION
If you installed using one of the above methods, you can add the runtime to your runtimepath by putting the following in your .vimrc:
Set PAGER and aliases as above with the path into ~/.vim/bundle/vimpager. See Using From Vim. DESCRIPTIONA PAGER using less.vim with support for highlighting of man pages and many other features. Works on most UNIX-like systems as well as Cygwin and MSYS. On GitHub: http://github.com/rkitover/vimpager To use a different vimrc with vimpager, put your settings into a ~/.vimpagerrc or ~/.vim/vimpagerrc or a file pointed to by the VIMPAGER_RC environment variable. You can also have a global config file for all users in /etc/vimpagerrc, it will be used if the user does not have a .vimrc or .vimpagerrc. These are the keys for paging while in vimpager, they are the same as in less for the most part:
The commands that start with , will use your value of g:mapleader if you set one instead. To disable loading plugins, put “set noloadplugins” into a vimpagerrc file. You can also switch on exists('g:vimpager.enabled') in your vimrc to set alternate settings for vimpager. WARNING: Option names have changed from the previous releases to use a dict, if you use the old option names and check on exists('g:vimpager') everything will work the same way, if you use the new option names you must check exists('g:vimpager.enabled') instead. NOTE: Before setting the vimpager and less.vim related options described below, make sure the g:vimpager and g:less dicts exist like so:
If you want to disable less compatibility mode, and use regular vim motion commands, put this into your .vimrc/vimpagerrc:
You can still enable less mode with this setting by pressing “,v”. If you define g:mapleader then it will be the value of g:mapleader plus v instead of ,v. Put the following into your .vimrc/vimpagerrc if you want to use gvim/MacVim for your pager window:
To turn off the feature of passing through text that is smaller than the terminal height use this:
See “PASSTHROUGH MODE” further down. To turn on line numbers set:
they are turned off by default. You can also invoke vimpager with the -N option to turn on line numbers. To turn off search highlighting set:
this can always be toggled with ESC-u. To start vim with -X (no x11 connection, a bit faster startup) put the following into your .vimrc/vimpagerrc:
NOTE: this may disable clipboard integration in X terminals. The scroll offset (:help scrolloff), may be specified by placing the following into your .vimrc/vimpagerrc (default = 5, disable = 0):
The default is 5 only in less mode, with less mode disabled the default is the user’s scrolloff setting. The process tree of vimpager is available in vimpager.ptree, an example usage is as follows:
To disable the use of AnsiEsc.vim to display ANSI colors in the source, set:
see the section ANSI ESCAPE SEQUENCES AND OVERSTRIKES for more details. You can also set your own function for the message on the statusline via g:less.statusfunc, see autoload/vimpager_utils.vim for the default one as an example. USING FROM VIMIf you installed vimpager via Pathogen or added it to your runtimepath, then the Page command is available from normal vim sessions, and it is also available when invoking the vimpager script. If your global keywordprg is set to man or :Man, which is the default, the plugin will reset it to :Page!\ -t\ man to page man pages in a new tab. See the example below for how to set this for other file types. You may want to add something like the following to your .vimrc to enable the mapping to turn on less mode:
Then ,v will toggle less mode in any buffer. The default mapleader is \. NOTE: If you are using Vim 7.3 or earlier, the Surround plugin will conflict with less.vim mappings such as Ctrl-D, on 7.4+ this is not an issue as the <nowait> tag is used for mappings. The syntax of the Page command is:
The option switch is optional and determines where the file or command is opened:
The default is to open a new buffer. For Page! commands, STDERR is suppressed. I recommend adding set hidden to your .vimrc. If the command is one of man, perldoc, pydoc or ri it will be handled specially, overstrikes will be removed and filetype will be set to man or perldoc. Ansi escapes will be handled with AnsiEsc if available, or removed otherwise. See here for details. The g:vimpager.ansiesc setting applies to the Page command if set. Here is an example (that is already enabled in the plugin) of how you can use this command to look up the python documentation for the module under the cursor in a new tab:
Then pressing K on a module name under the cursor will open the pydoc for it in a new tab. This is done by default in the plugin now for python, ruby, perl and sh (bash help.) The global default is man. COMMAND LINE OPTIONS-h | –help | –usagePrint summary of options. -v | –versionPrint the version information. + | +GStart at the end of the file, just like less. +FFollow file, like tail -f or less +F, equivalent to pressing F in less mode. -N | –LINE-NUMBERSTurn on line numbers, this can also be set with let g:less.number = 1 . -c cmdRun a vim command after opening the file. Multiple -c arguments are supported. –cmd cmdRun a vim command when entering vim before anything else. Multiple –cmd arguments are supported. -u vimrcUse alternate .vimrc or .vimpagerrc. -sSqueeze blank lines into a single blank line. GNU man passes this option to /usr/bin/pager. –passthroughIf files fit on the screen, print them with syntax highlighting using vimcat instead of invoking the pager. –force-passthroughAlways print files with syntax highlighting to the terminal instead of invoking the pager, regardless of whether they fit on the screen. –no-passthroughNever print files with syntax highlighting to the terminal with vimcat, always invoke the pager. -xEnable debugging output for the shell script part of vimpager. ANSI ESCAPE SEQUENCES AND OVERSTRIKESIf your source is using ANSI escape codes, the AnsiEsc plugin will be used to show them, rather than the normal vim highlighting, however read the caveats below. If this is not possible, they will be stripped out and normal vim highlighting will be used instead. Overstrikes in man pages, perl, python or ruby docs will always be removed. vimpager bundles the AnsiEsc plugin (it is expanded at runtime, there is nothing you have to do to enable it.) However, your vim must have been compiled with the `conceal' feature enabled. To check, try
if the result is `1' you have conceal, if it’s `0' you do not, and the AnsiEsc plugin will not be enabled. If you’re on a Mac, the system vim does not enable this feature, install vim from Homebrew. To disable the use of AnsiEsc.vim, set:
If the file has a modeline that sets ft or syntax, the setting will override the use of AnsiEsc. To turn off AnsiEsc while viewing a file, simply run
To turn off AnsiEsc on the commandline, use an invocation such as the following:
NOTE: The conceal feature of vim is still very buggy, especially as concerns spacing, and the line wrapping in files highlighted with AnsiEsc will not be correct (they are wrapped too soon.) The tab stops will be correct however, this is fixed up with a vim script. NOTE: AnsiEsc is a work in progress, and will only display files with simple ANSI codes correctly, such as that output by git tools. More complex highlighting is likely not going to work right now. We are working on this. PASSTHROUGH MODEIf the text sent to the pager is smaller than the terminal window, then it will be displayed without vim as text. If it has ansi codes, they will be preserved, otherwise the text will be highlighted with vimcat. You can turn this off by using:
CYGWIN/MSYS/MSYS2 NOTESvimpager works correctly with the native Windows gvim, just put it in your PATH and set the vimpager_use_gvim option as described above. ENVIRONMENTVIMPAGER_VIM can be set to the vim binary you want to use, if it starts with gvim or mvim then gui mode will be used. Will fall back to EDITOR if it contains vim. You can specify the vimrc to use with the VIMPAGER_RC environment variable. Setting VIMPAGER_DEBUG to a non-zero value will disable suppressing vim errors on startup and when switching to the next file. AUTHORSLucas Hoffmann l-m-h@web.de; Abdó Roig-Maranges abdo.roig@gmail.com; Rafael Kitover rkitover@gmail.com.
|