Skip to content

Repository files navigation

Kaa - console text editor

Kaa is a small and easy CUI text editor for console/terminal emulator environments.

Kaa is an easy yet powerful text editor for console user interface, providing numerous features like

  • Macro recording.
  • Undo/Redo.
  • Multiple windows/frames.
  • Syntax highlighting.
  • Grep.
  • Python console.
  • Python debugger.
  • Open source software(MIT).
  • More to come!

http://www.gembook.org/static/images/kaa_multiwindow.png

See http://kaaedit.github.io for more screen shots.

Kaa is very easy to learn in spite of its rich functionality. Only thing you need to remember is "To display menu, hit F1 key or alt+'m' key". Most of basic features could be accessed from fancy menus by hitting underlined character in the menu items. You can use kaa as easy as you are with Notepad on MS-Windows.

Kaa is written in Python. So, you can easily customize many aspects of kaa through simple Python scripts.

Kaa is a CUI editor that runs on most of modern UN*X flavor operating systems like Linux or Mac OS X. Kaa requires Unicode friendly environment both platform running kaa and terminal emulator/console to interact with kaa.

Cygwin environment on Windows platform is not supported at this time, but will be tested after they provide Python 3.3 package.

To run kaa, you need following component:

  • Python 3.3 or later

  • Development files for Python 3.3. For recent Debian/Ubuntu, you can install required libraries by

    $ sudo apt-get install python3-dev
    
  • If your Python installation is not system-supplied package but built by yourself, please ensure you have installed ncurses library with wide character support before you built Python. Consult documentation of your platform for details. For recent Debian/Ubuntu, you can install required libraries by

    $ sudo apt-get install libncurses-dev
    

    After theses packages are installed, rebuild Python installation to take effect.

  • Kaa can use system clipboard. To use clipboard on Unix platform, xclip command should be installed. For Ubuntu Linux, following command installs xclip command.

    $ sudo apt-get install xclip
  • UTF-8 locales

  • (optional) Cython

Use easy_install3 or pip3 to install kaa from PyPI

$ sudo easy_install3 -U kaaedit

Kaa uses alt key for keyboard shortcut like alt+k. On most of recent Windows or Linux terminal, alt key works out of box. But on Mac OS X, Terminal app should be configured:

  1. Select Preferences menu.
  2. Open the Settings tab.
  3. Open the keyboard tab.
  4. Check Use option as meta key.

Or, if you use iTerm2 on Mac, you should configure:

  1. Select Preferences menu.
  2. Open the Profiles tab.
  3. Open the Keys tab.
  4. Check Left option Key acts as: +Esc. and Right option Key acts as: +Esc. button.

If you use Gnome terminal and wishes to access menu by F1 key, you should configure:

  1. Select Edit | Keyboard shortcuts menu.
  2. Scroll to the Help/Contents shortcut and change key from F1 to some another key.

Kaa looks better with 256 color mode of terminal emulator. For Terminal.app on Mac OS X, you can set 256 color mode with following procedure:

  1. Select Preferences menu.
  2. Open the Settings tab.
  3. Select xterm-256color for "Declare terminal as" field.

For iTerm2, you can set 256 color mode with following procedure:

  1. Select Preferences menu.
  2. Open the Profiles tab.
  3. Open the Terminal tab.
  4. Select xterm-256color for "Report terminal type" field.

Otherwise, you should manually update terminal setting. e.g., If you use bash, add following line to ~/.bashrc file:

$ export TERM=xterm-256color

For detail, see http://www.pixelbeat.org/docs/terminal_colours/#256 to enable 256 color on your terminal.

kaa [-h] [--version] [--no-init] [--init-script INIT_SCRIPT]
[--palette PALETTE] [--term TERM] [file [file ...]]
-h, --helpshow this help message and exit
--versionshow version info and exit
--no-initskip loading initialization script
--init-script INIT_SCRIPT
execute file as initialization script instead of default initialization file
--palette PALETTE
color palette. available values: dark, light.
--term TERM, -t TERM
specify terminal type
--command command, -x command
spefify kaa command id to execute at start-up e.g: kaa -x python.console / kaa -x tools.grep

Using kaa is intuitive. Typing alphabet keys will update file as you expected. Functional keys like arrow or delete keys also works.

To display menu, type F1 key or alt+m (type 'm' key with alt key). Each items in the menu has one underlined character. The menu item is executed by typing the underlined key with or without pressing alt key.

Typing escape key hides menu.

File menu

NewCreate new file.
OpenOpen existing file.
File infoShow file information. Also update per file settings of tab or indentation.
View DiffShow difference between original file and current buffer.
SaveSave current file.
Save AsSave current file as new file.
CloseClose current frame.
Save allSave all current files.
Close allClose all frames.
[Recently]Show recently used files menu.
QuitTerminate kaa.
Recently used files menu
Recently used filesShow list of recently used files.
Recently used dirsShow list of recently used directories.

Edit menu

CutCut selected text.
CopyCopy selected text.
PastePaste from clipboard.
Paste HistoryPaste from clipboard history.
UndoUndo last modification.
RedoRedo last undo.
SearchSearch text.
ReplaceReplace text.
CompleteWord completion.
[Convert]Show text convert menu.
Text convert menu
UpperConvert selected text to upper case.
LowerConvert selected text to lower case.
NormalizationConvert selected text to Unicode Normalization Forms(NFKC).
Full-widthConvert alphabet and numbers in the selected text to full-width character.

Code menu

Code menu differs among file types. Following items are typical in programming languages.

CommentInsert line comment character at top of lines in selected region.
UncommentDelete line comment character at top of lines in selected region.
Table of contentsShow table of contents to move cursor.

Macro menu

Start recordStart macro recording.
End recordEnd macro recording.
Run macroRun last macro.

Tools menu

GrepSearch text from disk.
Paste linesInsert lines of text without auto indentation.
Shell commandExecute external shell command and insert the output.
MakeRun make to compile source files and capture error messages. Use f9/10 key to traverse errors.
Spell checkerRun English spell checker.
Python consoleStart python console.
Python debuggerStart Python debugger.
Python debugger serverWait for external debugger connection.

Window menu

Frame listShow list of frame windows. Use left/right arrow key to change active frame.
Split vertSplit current window vertically.
Split horzSplit current window horizontally.
Move separatorMove window separator. Use left/right arrow key to move separator.
Next windowActivate next window.
Prev windowActivate previous window.
Join windowJoin split window.
[Switch file]Show switch window menu.

Switch file menu

Switch fileSwitch content of active window.
New file hereCreate new file to active window.
open file hereOpen existing file to active window.
Recently used filesShow list of recently used files.
Recently used dirsShow list of recently used directories.

Menu keys

F1, alt+mShow menu.
Alt-wShow switch file menu.

Cursor keys

left, Control+bCursor left.
right, Control+fCursor right.
upCursor up.
downCursor down.
Control+pMove cursor to previous physical line.
Control+nMove cursor to next physical line.
Control+left, Alt+bMove cursor to previous word boundary.
Control+right, Alt+fMove cursor to next word boundary.
Alt+p, Page upPrevious page.
Alt+n, Page downNext page.
Control+a, HomeMove cursor to top of line.
Control+^Move cursor to first letter of line.
Control+e, EndMove cursor to end of line.
Alt+<, Control+HomeMove cursor to top of file.
Alt+>, Control+EndMove cursor to end of file.
Control+gGo to line number.
Control+tTable of contents.

Text selection

Shift+leftSelect to previous character.
Shift+rightSelect to next character.
Shift+upSelect to previous line.
Shift+downSelect to next line.
Shift+HomeSelect text to top of line.
Shift+EndSelect text to end of line.
Control+Shift+HomeSelects text to top of file.
Control+Shift+EndSelect text to end of file.
Control+Space, Control+@Set mark to select text region.
Alt+#Set mark to select text rectangularly.
Alt+aSelect all text.
Alt+cSelect current word at first press. Subsequent press selects entire current line, and the third press selects entire text

Text deletion

Backspace, Control+hDelete the character to the left.
Delete, Control+dDelete the character at the cursor.
Control+backspace, Alt+hDelete the word to the left.
Control+Delete, Alt+dDelete the word to the right.
Control+kDelete the line to the right.
Alt+kDelete the current line.

Clipboard

Control+vPaste from clipboard.
Control+xCut selection.
Control+cCopy selection.
Alt+vPaste from clipboard history.

Undo/Redo

Control+zUndo last change.
Control+yRedo last undo.

Search/Replace

Control+sSearch text.
Alt+sReplace text.
F2Search prev.
F3Search next.

Other

F6Toggle macro recording on/off.
F5Run macro.
Alt+.Run last executed edit command again.
TabIndent selected lines.
Shift+TabDedent selected lines.
Control+oWord completion.
Control+u Alt+!Execute command and insert the output.
Alt+zSuspend kaa and back to shell.

When regex button is checked, Replace string is also regular expression string. In this case, special characters like \t or \n are converted to tab character and newline character. Also, back-reference character will be replaced to sub-string matched group in the search string. For example, when search string is '(a+)(b+)' and replace string is '\2\1', matched string 'aabb' will be replaced to 'bbaa'.

Grep dialog has three input field. Search is a plain text or regular expression string to search. Directory is a directory to start searching. If Tree button was checked, files are searched recursively. Filenames is space separated list of file spec in shell-style wild-cards (e.g., *.txt *.py *.doc). Up arrow key displays history of each input field.

In the grep result window, use F9 and F10 key to traverse matches forward/backward.

You can type Python script as normal Python interpreter. To execute script, you should hit enter key at very last of the script. Otherwise, newline character is inserted as text editor. You can move cursor upper or below to edit multiline script.

To show script history window, hit alt+Enter key on the console.

To use spell checker, PyEnchant module should be installed.

On MAC OS-X install enchant with homebrew before installing PyEnchant.

$ brew install enchant
$ pip-3.3 install PyEnchant

[Tools]|Make executes make command to build your files. You can alter command and options to build. To retrieve previous command and options, hit up cursor key to display history window.

Output of make displayed on the window. You can traverse source files cause of the error forth and back with f9 and f10 key.

Warning

Python debugger is experimental at this point.

Kaa can be used as front-end of Python debugger module(bdb) running in another process. Although kaa itself requires Python 3.3 or later, you can use Python 2.6 or later in the target process.

Starting debugger

There are three ways to start debugger.

kaadbg.run module

Kaadbg package executes your Python script with Python debugger connected to debugger window of kaa. Usually, kaadbg is Python package installed as a part of kaa. To use another Python interpreter than kaa installed, you can install kaadbg separately.

$ sudo pip install -U kaadbg

Currently, kaadbg supports from Python 2.6 to Python 3.x.

To activate kaa remote debugger, select [Tools]|Python debugger server and enter port number to connect debugger(default 28110).

Next, open new terminal window and run following command in the terminal window.

$ python -m kaadbg.run my_test_stript.py arg1 args

If you need use other port than 28110, you should provide port number with -p option.

$ python -m kaadbg.run -p 29000 my_test_stript.py arg1 args
set_trace

Like Python's standard pdb module, you can import kaadbg package and call set_trace() to start debug session.

You should start activate kaa remote debugger by menu [Tools]|Python debugger server and enter port number to connect debugger(default 28110).

To connect kaa remote debugger, open your target script and insert following lines of code.

importkaadbg.debugkaadbg.debug.set_trace()

If you need use other port than 28110, you should provide port number to set_trace().

importkaadbg.debugkaadbg.debug.set_trace(29000)

Now you can start your target script. Kaa remote debugger will be opened when kaadbg.debug.set_trace() is hit.

Run child process

You can run your target script as child process of kaa to debug.

To start child process, select [Tools]|Python debugger in kaa menu and specify command line as follow.

python2.7 -m kaadbg.run myscript.py arg1 arg2

Command line should starts with Python interpreter you use and -m kaadbg.run. Name of target script and arguments follows.

Note that kaa doesn't capture standard output and standard error of target process, so you cannot see outputs of the target script. Also, standard input of the target process is closed just after command started.

Breakpoints

To set/unset breakpoints, select [Code]|Toggle Breakpoint in menu in editor. By default, f8 key is bounded to this menu item.

While debugger window is opened, you can suspend the debugger window by escape key. After you finish to update breakpoints in editor window, select [Tools]|Python debugger menu again to resume debugger. To view list of current breakpoints, select breakpoints button with alt+E key.

Inspect variables

To see value of variables, select Expr on the debugger window by pressing alt+E key and enter Python expression you want to inspect like self.spam.

Warning

Python debugger is experimental at this point.

Kaa currentry supports some basic vi-like key bindings, but are disabled by default. To activate vi bindings, create ~/.kaa/__kaa__.py file with following lines.

fromkaa.filetype.default.defaultmodeimportDefaultModeDefaultMode.VI_COMMAND_MODE=True

Command mode

Unlike vi, kaa is in insert-mode at start up. Hit escape key to move to command mode.

mode commands
iInsert mode.
RReplace mode.
AAppend text after the end of line.
vCharacterwise visual mode.
VLinewise visual mode.
cursor commands
hCursor right.
lCursor left.
kCursor up.
jCursor down.
wCursor word right.
bCursor word left.
0Cursor to top of line.
^Cursor to first character of line.
$Cursor to end of line.
ggCursor to top of file.
GCursor to end of file.
Control+bPage up.
Control+fPage down.
Edit commands
rReplace a character.
xDelete a character.
dDelete to next move.
uUndo last edit.
Control+rRedo last undo.
yCopy selection.

Kaa executes a Python script file at ~/.kaa/__kaa__.py on start up. You can write Python script to customize kaa as you like.

To change default color palette, you can modify kaa.app.DEFAULT_PALETTE.

importkaakaa.app.DEFAULT_PALETTE='light'# Use `light' palette. Default is `dark'

Each file type has file editor mode. kaa.filetype.default import defaultmode is base class of all text file modes. You can change attributes of filetype classes.

Show line numbers

To show line number in editor screen, you can update SHOW_LINENO attribute of file mode classes.

fromkaa.filetype.defaultimportdefaultmodedefaultmode.DefaultMode.SHOW_LINENO=True

To show line number in HTML mode, you should change attribute of htmlmode.HTMLMode class.

# Show line number in HTML modefromkaa.filetype.htmlimporthtmlmodehtmlmode.HTMLMode.SHOW_LINENO=True

Each mode object calls setup function to customize. kaa.addon.setup() decorator registers setup function.

setup(filemode='kaa.filetype.default.defaultmode.DefaultMode')

Setup function is called when mode object is created. In the setup function, you can customize various aspect of file type object.

Customize keybind

mode.add_keybinds() method registers custom key bind.

add_keybinds(self, editmode='input', keys=None):

editmode is a name of editmode which should be one of input, command, visual or visualline. keymap is a dictionary of keybind and command name.

Following example assign Control+x 2 key to split window as Emacs.

fromkaa.addonimport*@setup('kaa.filetype.default.defaultmode.DefaultMode')defmy_keybind(mode):
mode.add_keybinds(keys={
((ctrl, 'x'), '2'): 'editor.splithorz'# Assign C-x 2 to split window.
})

Create custom command

kaa.command.commandid() decorator declare a function as kaa's editor command.

commandid(commandid)

commandid is a unique command name in string.

Command functions can be registered to mode objects.

To register commands to mode, use add_command() method.

add_command(command)

command is a command function.

fromkaa.addonimport*# sample command to insert text at the top of file.@commandid('test.command')deftestcommand(wnd):
wnd.cursor.setpos(0)
wnd.document.mode.put_string(wnd, 'sample text\n')
@setup('kaa.filetype.default.defaultmode.DefaultMode')defcommand_sample(mode):
# register command to the modemode.add_command(testcommand)
# add key bind th execute 'test.command'mode.add_keybinds(keys={
(alt, '1'): 'test.command'# Assign alt-1 to test.command
})

Change color theme

Function mode.add_theme() could be used to customize color theme.

defadd_theme(theme)

theme is a dictionary of theme name and list of styles. Currently, the only valid theme name is basic.

@setup('kaa.filetype.default.defaultmode.DefaultMode')deftheme_sample(mode):
# update foreground color of comments to red.mode.add_theme({
'basic': [
Style('default', 'red', None),
]
}

You can get the recent source code from github.

$ git clone https://github.com/kaaedit/kaa.git

To run test, you need to install py.test

$ pip-3.3 install -U pytest
$ cd kaa
$ py.test

There is an experimental script to run freeze to build standalone kaa binary file. To freeze kaa, You must proceed with the following steps:

  1. Apply following two patches to your Python 3.3 installation.
  2. Clone kaa source code.
$ git clone https://github.com/kaaedit/kaa.git
  1. In source directory of kaa, cd to kaa/freezing directory.
$ cd kaa/freezing
  1. Edit PYTHON variable in build.sh for your environment.
  2. run build.sh
$ ./build.sh
  1. Check if freezing/dist/kaa exists.

I really appreciate for your help.

  • Support Python 3.12
  • Support Python 3.10
  • Display git log.
  • Display unmerged diffs in git status screen.
  • Fix clipboard error in Linux.
  • Autocomplete around puctuation now works better.
  • Display result of git commit command.
  • Stage/unstage in no-commit repogitory now works.
  • git status doesn't work if git has no commit.
  • Stop Emacs-style set-mark command to clear ongoing-selection.
  • Normalize Short-key of menu items. Now you can use double-width-F letter to open File menu.
  • Add git support.
  • [Markdown] Recognize nested lists.
  • [CSS] Improve syntax highlight.
  • Deprecate old addon functions. Use kaa.addon.setup() instead.
  • Add suspend command to send kaa to the background. Bound to alt-Z key by default.
  • Pasting long text to Python console was failed.
  • [CSS] Highlight real number without preceding digits.
  • Fix bug if diaog size is greater than screen size.
  • Range of word in word completion is fixed.
  • Use X11 clipboard only if environment variable DISPLAY is provided.
  • Fix bug if diaog size is greater than screen size.
  • Cursor word-right/left now skips white-space.
  • Initial directory of file-open dialog is same directory as file now active.
  • Various highlighting bugs.
  • Handle terminal resize in Python 3.5.
  • Reworked syntax highligh.
  • [CSS mode] Highlight @media rules.

Copyright (c) 2013 - 2016 Atsuo Ishimoto

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

kaa - console text editor

Resources

Stars

133 stars

Watchers

15 watching

Forks

Releases

Packages

Used by

Contributors

Languages