Here is a lepton snippet that supports a code block
console.log("test")| ## Actions performed: | |
| Goneovim --debug=/path/to/log -u NONE | |
| manually type `set mouse=a` | |
| type few lines of asdasd text | |
| try to select those text lines with mouse (current limitation is only 1 word maximum on the line that selection was started from) | |
| quit | |
| ---- | |
| 2021/06/27 08:25:38.520876 000.030 --- GONEOVIM STARTING --- | |
| 2021/06/27 08:25:38.520943 000.101 detecting home directory path |
| #!/bin/bash | |
| set -uo pipefail | |
| trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR | |
| # if re running, unmount anything at /mnt first | |
| is_mounted() { | |
| mount | awk -v DIR="$1" '{if ($3 == DIR) { exit 0}} ENDFILE{exit -1}' | |
| } |
Here is a lepton snippet that supports a code block
console.log("test")