Grid table, no unicode:
Foo | Bar |
---|---|
/ Good | x Bad |
#!/usr/bin/env bash | |
set -euo pipefail | |
cd "$(bazel info workspace)" | |
WORKSPACE_NAME=$(basename "$PWD") | |
cat << EOF > ./.project | |
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> |
#!/bin/bash | |
set -euo pipefail | |
WORKDIR=/tmp/difftest | |
rm -rf $WORKDIR | |
mkdir -p $WORKDIR | |
cd $WORKDIR | |
git init |
Serializing request to be sent to Jedi Object {id: "23118315d0055354db81a7746dc5fb87", lookup: "completions", path: undefined, source: "import subprocess↵↵s", line: 2…} | |
Serializing request to be sent to Jedi Object {id: "b6849f9cc4e2ddcb79a99d783444367a", lookup: "completions", path: undefined, source: "import subprocess↵↵su", line: 2…} | |
Serializing request to be sent to Jedi Object {id: "9dce507a70af5cc206489a7992053ec5", lookup: "completions", path: undefined, source: "import subprocess↵↵sub", line: 2…} | |
Deserealizing response from Jedi {"id": "23118315d0055354db81a7746dc5fb87", "results": [{"snippet": "abs$0", "rightLabel": "", "type": "builtin", "description": "abs(number) -> number\n\nReturn the absolute value of the argument."}, {"snippet": "all$0", "rightLabel": "", "type": "builtin", "description": "all(iterable) -> bool\n\nReturn True if bool(x) is True for all values x in the iterable.\nIf the iterable is empty, return True."}, {"snippet": "and$0", "rightLabel": "", "type": "keyword", "description": " |
#!/bin/bash | |
# Handles proper use of Meld from Git. | |
# | |
# Instead of launching meld with $MERGED as the base revision, this | |
# script makes a copy of $BASE and handles copying the result back | |
# to $MERGED if the result was saved. | |
# As an extra tweak, it also presents branch names (if known) as | |
# the file name prefix, instead of just "LOCAL" and "REMOTE". |