[![Build Status](https://dev.azure.com/asottile/asottile/_apis/build/status/asottile.babi?branchName=master)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=29&branchName=master) [![Azure DevOps coverage](https://img.shields.io/azure-devops/coverage/asottile/asottile/29/master.svg)](https://dev.azure.com/asottile/asottile/_build/latest?definitionId=29&branchName=master) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/asottile/babi/master.svg)](https://results.pre-commit.ci/latest/github/asottile/babi/master) ![babi logo](https://user-images.githubusercontent.com/1810591/89981369-9ed84e80-dc28-11ea-9708-5f4c49c09632.png) babi ==== a text editor, eventually... ### installation `pip install babi` ### why is it called babi? I used to use the text editor `nano`, frequently I typo this. on a qwerty keyboard, when the right hand is shifted left by one, `nano` becomes `babi`. ### babi vs. nano here is a youtube video where I discuss the motivation for creating and using `babi` instead of `nano`: [![youtube video about babi](https://img.youtube.com/vi/WyR1hAGmR3g/mqdefault.jpg)](https://youtu.be/WyR1hAGmR3g) ### quitting babi currently you can quit `babi` by using ^X (or via esc + :q). ### key combinations these are all of the current key bindings in babi - ^S: save - ^O: save as - ^X: quit - ^P: open file - arrow keys: movement - ^A / home: move to beginning of line - ^E / end: move to end of line - ^Y / pageup: move up one page - ^V / pagedown: move down one page - ^-left / ^-right: jump by word - ^-home / ^-end: jump to beginning / end of file - ^_: jump to line number - selection: shift + ...: extend the current selection - arrow keys - home / end - pageup / pagedown - ^-left / ^-right - ^-end / ^-home - tab / shift-tab: indent or dedent current line (or selection) - ^K / ^U: cut and uncut the current line (or selection) - M-u / M-U or M-e: undo / redo - ^W: search - ^\\: search and replace - ^C: show the current position in the file - ^-up / ^-down: scroll screen by a single line - M-left / M-right: go to previous / next file - ^Z: background - esc: open the command mode - :q: quit - :w: write the file - :wq: write the file and quit - :sort: sort the file (or selection) in prompts (search, search replace, command): - ^C: cancel - ^K: cut to end - ^R: reverse search ### setting up syntax highlighting the syntax highlighting setup is a bit manual right now 1. find a visual studio code theme, convert it to json (if it is not already json) and put it at `~/.config/babi/theme.json`. a helper script is provided to make this easier: `./bin/download-theme NAME URL` here's a modified vs dark plus theme that works: ```bash ./bin/download-theme vs-dark-asottile https://gist.github.com/asottile/b465856c82b1aaa4ba8c7c6314a72e13/raw/22d602fb355fb12b04f176a733941ba5713bc36c/vs_dark_asottile.json ``` ## demos most things work! here's a few screenshots ### file view this opens the file, displays it, and can be edited and can save! unknown keys are displayed as errors in the status bar. babi will scroll if the cursor goes off screen either from resize events or from movement. babi can edit multiple files. babi has a command mode (so you can quit it like vim :q!). babi also supports syntax highlighting ![](https://i.fluffy.cc/5WFZBJ4mWs7wtThD9strQnGlJqw4Z9KS.png) ![](https://i.fluffy.cc/qrNhgCK34qKQ6tw4GHLSGs4984Qqnqh7.png) ![](https://i.fluffy.cc/DKlkjnZ4tgfnxH7cxjnLcB7GkBVdW35v.png) ![](https://i.fluffy.cc/VqHWHfWNW73sppZlHv0C4lw63TVczZfZ.png) ![](https://i.fluffy.cc/p8lv61TCql1MJfpBDqbNPWPf27lmGWFN.png) ![](https://i.fluffy.cc/ZH5sswB4FSbpW8FfcXL1KZWdJnjxRkbW.png) ![](https://i.fluffy.cc/Rw8nZKFC3R36mNrV01fL2gk4rfwWn7wX.png) ![](https://i.fluffy.cc/FSD92ZVN4xcMFPv1V7gc0Xzk8TCQTgdg.png)