LitREPL is a macroprocessing Python library for Litrate programming and code execution.
Project description
LitREPL
LitREPL is a command-line tool and a Vim plugin for literate programming in Python, aimed at providing user-friendly code editing and execution workflows.
Features
- Document formats:
- Markdown [Example]
- Latex [Example][Example (PDF)].
- Interpreters: Python, IPython
- Works both in Vim and on the command line
Requirements
- POSIX-compatible OS, typically a Linux. The plugin relies on POSIX pipes and depends on certain shell commands.
- More or less recent
Vim
- Python3 with the following libraries:
lark-parser
(Required). - Command line tools:
GNU socat
(Optional),ipython
(Optional).
Contents
- Installation
- Usage
- Development
- Gallery
- Technical details
- Limitations
- Related projects
- Third-party issues
Installation
The repository includes a Python tool and an interface Vim plugin. The Python
part should be installed with pip install
as usual. The Vim part requires
plugin manager like Plug
or hand-copying files to a .vim config folder.
The generic installation procedure:
pip-install and Vim-Plug
Instructions for the Pip and Vim-plug:
- Install the
litrepl
Python package with pip:$ pip install --user git+https://github.com/grwlf/litrepl.vim $ litrepl --version
- Install the Vim plugin by adding the following line between the
plug#begin
andplug#end
lines of your.vimrc
file:Plug 'https://github.com/grwlf/litrepl.vim' , { 'rtp': 'vim' }
Note:rtp
sets the custom vim-plugin source directory of the plugin.
Nix and vim_configurable
Nix/NixOS users can follow the formalized path:
Nix supports
configurable Vim expressions.
To enable the Litrepl plugin, just add the vim-litrepl.vim-litrepl-release
to the
list of Vim packages.
let
vim-litrepl = import <path/to/litrepl.vim> {};
in
vim_configurable.customize {
name = "vim";
vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; {
start = [
...
vim-litrepl.vim-litrepl-release
...
];
};
}
Note: vim-demo
expression from the default.nix provides
an example Vim configuration. Use nix build '.#vim-demo'
to build it and then
./result/bin/vim-demo
to run the editor.
See the Development section for more details.
Usage
-
Create the code and result sections in your Markdown or Latex document. Put Python code into the code section. Leave the result section emtpy.
-
Place the cursor on any of the secions and run the
:LEval
command.Markdown Latex -------- ----- ``` python \begin{lcode} print('Hello Markdown!') print('Hello LaTeX!') ``` \end{lcode} ``` result \begin{lresult} Hello Markdown! Hello LaTeX! ``` \end{lresult}
See also:
Reference
Vim and command-line commands
Vim | Command line | Description |
---|---|---|
:LStart |
litepl start |
Start the interpreter |
:LStop |
litepl stop |
Stop the interpreter |
:LStatus |
litepl status <F |
Print the daemon status |
:LRestart |
litrepl restart |
Restart the interpreter |
:LEval N |
lirtepl eval-sections (N|L:C) <F |
Run or update section under the cursor and wait until the completion |
:LEvalAbove N |
lirtepl eval-sections '0..(N|L:C)' <F |
Run sections above and under the cursor and wait until the completion |
:LEvalBelow N |
lirtepl eval-sections '(N|L:C)..$' <F |
Run sections below and under the cursor and wait until the completion |
:LEvalAsync N |
lirtepl --timeout-initial=0.5 --timeout-continue=0 eval-sections (N|L:C) <F |
Run section under the cursor and wait a bit before going asynchronous. Also, update the output from the already running section. |
:LInterrupt |
lirtepl interrupt (N|L:C) <F |
Send Ctrl+C signal to the interpreter and get a feedback |
:LEvalAll |
lirtepl eval-sections '0..$' <F |
Evaluate all code sections |
lirtepl eval-code <P |
Evaluate the given Python code | |
:LTerm |
lirtepl repl |
Open the terminal to the interpreter |
:LOpenErr |
N/A | Open the stderr window |
:LVersion |
litrepl --version |
Show version |
Where
F
denotes the documentP
denotes the Python codeN
denotes the number of code section starting from 0.L:C
denotes line:column of the cursor.
Variables and arguments
Vim setting | CLI argument | Description |
---|---|---|
set filetype |
--filetype=T |
Input file type: latex |markdown |
N/A | --interpreter=I |
The interpreter to use: python |ipython |auto (the default) |
let g:litrepl_debug=0/1 |
--debug=1 |
Print debug messages to the stderr |
let g:litrepl_errfile="/tmp/litrepl.vim" |
N/A | Intermediary file for debug and error messages |
let g:litrepl_always_show_stderr=0/1 |
N/A | Set to auto-open stderr window after each execution |
let g:litrepl_timeout=FLOAT |
--timeout-initial=FLOAT |
Timeout to wait for the new executions, in seconds, defaults to inf |
N/A | --timeout-continue=FLOAT |
Timeout to wait for executions which are already running, in seconds, defaults to inf |
I
is taken into account by thestart
command or by the first call toeval-sections
.
Hints
Vim, adding keybindings
The plugin does not define any keybindings, but users could do it by themselves, for example:
nnoremap <F5> :LEval<CR>
nnoremap <F6> :LEvalAsync<CR>
Vim, inserting new sections
Below we define :C
command inserting new sections.
command! -buffer -nargs=0 C normal 0i``` python<CR>```<CR><CR>``` result<CR>```<Esc>4k
Vim, executing first section after restart
We define the :LR
command running first section after the restart.
command! -nargs=0 LR LRestart | LEval 0
Vim, running shell commands
Thanks to IPython features, we can use exclamation to run shell commands directly from Python code sections.
``` python
!cowsay "Hi Litrepl"
```
``` result
____________
< Hi Litrepl >
------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||----w |
|| ||
```
Command line, basic usage
To evaluate code section in a document:
$ cat doc/example.md | litrepl --filetype=markdown --interpreter=ipython \
eval-sections '0..$' >output.md
To evaluate a Python script:
$ cat script.py | litrepl --interpreter=ipython eval-code
Note that both commands above share the same background interpreter session.
Command line, stop on unhandled exception
For processing software documents one might find useful to use a separated interpreter session, stopping it when first unhandled exception happens.
$ cat >document.md.in <<EOF
Failing Python example
``` python
raise Exception("D'oh!")
```
EOF
$ cat document.md.in \
| litrepl \
--filetype=markdown \
--standalone-session \
--exception-exit=200 \
eval-sections '0..$' \
>document.md
$ echo $?
200
Here, the --standalone-session
tells Litrepl to run this document in a new
session and stop it before exiting, --exception-exit=200
sets the exit code
returned in the case of unhandled exceptions.
Development
This project uses Nix as a primary development framework. flake.nix handles the source-level Nix dependencies while the default.nix defines the common build targets including Pypi and Vim packages, demo Vim configurations, development shells, etc.
Development shells
The default development shell is defined in the ./default.nix
as a Nix
expression named shell
. Nix makes sure that all the dependencies are available
inside. To enter this shell, run:
$ nix develop
Another shell which might be useful is shell-screencast
. To run it, specify
the full Nix-flake path as follows:
$ nix develop '.#shell-screencast'
Common workflows
The top-level Makefile encodes typical workflows to be executed from within the development shell:
[LitREPL-develop] $ make help
LitREPL is a macroprocessing Python library for Litrate programming and code execution
Build targets:
help: Print help
test: Run the test script (./sh/test.sh)
wheel: Build Python wheel (the DEFAULT target)
version: Print the version
upload: Upload wheel to Pypi.org (./_token.pypi is required)
Other Nix targets
To build individual Nix expressions, run the nix build '.#NAME'
passing the
name of the expression to build. If succeeded, Nix publishes the last build
results under the ./result
symlink.
$ nix build '.#vim-demo'
$ ./result/bin/vim-demo # Run the pre-configured demo instance of Vim
The list of Nix build targets includes:
litrepl-release
- Litrepl script and Python liblitrepl-release-pypi
- Litrepl script and Python libvim-litrepl-release
- Vim with locally built litrepl pluginvim-litrepl-release-pypi
- Vim with litrepl plugin built from PYPIvim-test
- A minimalistic Vim with a single litrepl pluginvim-demo
- Vim configured to use litrepl suitable for recording screencastsvim-plug
- Vim configured to use litrepl via the Plug managershell-dev
- The development shellshell-screencast
- The shell for recording demonstrations, includesvim-demo
.
Gallery
Basic usage
Using LitREPL in combination with the Vimtex plugin to edit Latex documents on the fly.
Asynchronous code execution
Technical details
The following events should normally happen after users type the :LitEval1
command:
- On the first run, LitREPL starts the Python interpreter in the background. Its standard input and output are redirected into UNIX pipes in the current directory.
- LitREPL runs the whole document through the express Markdown/Latex parser determining the start/stop positions of code and result sections. The cursor position is also available and the code from the right code section can reach the interpreter.
- The process which reads the interpreter's response is forked out of the main LitREPL process. The output goes to the temporary file.
- If the interpreter reports the completion quickly, the output is pasted to the resulting document immediately. Otherwise, the temporary results are pasted.
- Re-evaluating sections with temporary results causes LitREPL to update these results.
Limitations
- Formatting: Nested code sections are not supported.
- Formatting: Special symbols in the Python output could invalidate the document.
- Interpreter: Extra newline is required after Python function definitions.
- Interpreter: Stdout and stderr are joined together.
- Interpreter: Evaluation of a code section locks the editor.
- Interpreter: Tweaking
os.ps1
/os.ps2
prompts of the Python interpreter could break the session. Interpreter: No asynchronous code execution.Interpreter: Background Python interpreter couldn't be interrupted
Related projects
Edititng:
- https://github.com/lervag/vimtex (LaTeX editing, LaTeX preview)
- https://github.com/shime/vim-livedown (Markdown preview)
- https://github.com/preservim/vim-markdown (Markdown editing)
Code execution:
- Vim-medieval https://github.com/gpanders/vim-medieval
- Evaluates Markdown code sections
- Pyluatex https://www.ctan.org/pkg/pyluatex
- Magma-nvim https://github.com/dccsillag/magma-nvim
- Codi https://github.com/metakirby5/codi.vim
- Pythontex https://github.com/gpoore/pythontex
- Evaluates Latex code sections
- Codebraid https://github.com/gpoore/codebraid
- Vim-ipython-cell https://github.com/hanschen/vim-ipython-cell
- Vim-ipython https://github.com/ivanov/vim-ipython
- Jupytext https://github.com/goerz/jupytext.vim
- Alternative? https://github.com/mwouts/jupytext
- Ipython-vimception https://github.com/ivanov/ipython-vimception
Useful Vim plugins:
- https://github.com/sergei-grechanik/vim-terminal-images (Graphics in vim terminals)
Useful tools:
Third-party issues
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file litrepl-2.3.1.tar.gz
.
File metadata
- Download URL: litrepl-2.3.1.tar.gz
- Upload date:
- Size: 109.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d472d03f362727c0209d5d1bdef32c7ebacea39561ba1eb658f0d9cea51c514a |
|
MD5 | 12fdabe384a7e702f2b489a4607a0846 |
|
BLAKE2b-256 | fb07b5c0d6004fd7615770a926892f266c991c6798218e862192ca9c1a55bae3 |
File details
Details for the file litrepl-2.3.1-py3-none-any.whl
.
File metadata
- Download URL: litrepl-2.3.1-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2430a87e406f8170fe992bb885f32bf66fadf4fa4082a14291d44fe545ad9d3 |
|
MD5 | 26f953e005ac7a31316b69578305576f |
|
BLAKE2b-256 | f484139b51401c886a824810f688fabcc9c3bd5217ec52b2f95a7edf004db4cc |