emacs-pager icon indicating copy to clipboard operation
emacs-pager copied to clipboard

use a buffer as $PAGER when using emacs as your terminal

Results 10 emacs-pager issues
Sort by recently updated
recently updated
newest added

This PR contains a few fixes and cleanups: - Bases the major mode on `special-mode`, which exists for just this sort of thing, rather than the more bare-bones `fundamental-mode`. -...

The script seems very simple. So why not use the shell to implement it?

Hi, Haven't installed emacs-pager but I checked the source. ITSM the output of manpage is not colored. Coloring in less: http://imgur.com/a/DFHuv

Added support for running `emacs-pager FILE1 FILE2 ...` so that one can run e.g.: ``` emacs-pager .bashrc .vimrc ``` and have emacsclient spawn twice, once for every file. Running one...

It was easier for me to write a Python version that ensures the temp file is _always_ deleted, even if we just happen to exit the scope where it gets...

Use mktemp to create a unique and secure temporary file; avoid clobbering an existing file if the same command is run in parallel sessions, and avoid creating a temporary file...

Update installation instructions in documentation and provide a simple .el file with explicit autoloads etc for easy import into init.el or similar. Refactor the `.bashrc` / `.zshrc` snippet in `README.md`...

setq-local is an Emacs24 feature; revert to old-style make-local-variable followed by setq

# Ruby dependency removal 4664787efe3df2f2f0c60707d803bf36b9efc7c8 Ruby is good for prototyping, but not suitable for portable scripting. I ported `emacs-pager` into a shell script `emacs-pipe`. # Some trivial fixes - save...