|
Simple groff compiler for vimOctober 26, 2019 When writing documents in vim, it’s nice to have a quick way of
compiling them into the desired formats. In my case, I compile my
groff files into pdfs while at the same time having a preview in
The compiler codeBelow, I will describe the code in short.
The script above is called compile and is intended to be used for multiple file types. In this version, I have only implemented support for .ms files. First, the filename is read from the first argument to the script. From the filename, I determine the directory path and the "base name" without the filename’s extension. In the file I search for the pattern ---COMPILE: as it may contain additional arguments for the compiler (used above as $_ARGS). The script then changes the directory to the file’s directory and executes a chain of programs. First, preconv is executed to handle unicode characters. Then, refer handles references, eqn handles mathematical expressions, pic handles pictures, groff compiles everything into an a4 pdf using the ms macro set, and finally, Ghostscript runs post processing and embeds used fonts into the pdf (while preserving hyperlinks). Everything is then being outputted to the same "base name", but as a pdf file. Usage in vimIn vim, I have the following key binding set to compile the document upon request.
There isn’t much to say about this. The document is being saved, compiled, and then vim is being redrawn (to avoid glitches). WorkflowMy usual workflow for writing documents in vim, using the above compiler, consists of me first starting a terminal (with tmux). I then open a new tab, start vim, and setup everything for a base document in groff. After that, I run the compiler to create an empty pdf. In the first tab, I execute zathura to view the pdf. As I use dwm (a tiling window manager), I have vim on one side of the screen and zathura on the other. Simple and functional! |