diff --git a/README-JA.rst b/README-JA.rst index 6f363b0..d5aa09d 100644 --- a/README-JA.rst +++ b/README-JA.rst @@ -176,7 +176,7 @@ File menu +------------+----------------------------------------------------+ | Close All | すべてのフレームを閉じる | +------------+----------------------------------------------------+ -| Recently | 「最近のファイル」メニューを開く | +| [Recently] | 「最近のファイル」メニューを開く | +------------+----------------------------------------------------+ | Quit | kaaを終了する | +------------+----------------------------------------------------+ @@ -214,7 +214,7 @@ Edit menu +---------------------+-----------------------------------------+ | Complete | 単語補完 | +---------------------+-----------------------------------------+ -| Convert | 文字列変換メニューを表示 | +| [Convert] | 文字列変換メニューを表示 | +---------------------+-----------------------------------------+ @@ -277,9 +277,6 @@ Window menu | Frame list | フレーム一覧を表示。カーソル左右でフレームを | | | 選択する。 | +----------------+-------------------------------------------------+ -| Switch file | ウィンドウで表示しているファイルを切り替える。 | -| | カーソル左右でファイルを選択する。 | -+----------------+-------------------------------------------------+ | Split vert | ウィンドウを縦に分割する | +----------------+-------------------------------------------------+ | Split horz | ウィンドウを横に分割する | @@ -289,8 +286,29 @@ Window menu +----------------+-------------------------------------------------+ | Next window | 次のウィンドウに移動 | +----------------+-------------------------------------------------+ +| Prev window | 前のウィンドウに移動 | ++----------------+-------------------------------------------------+ | Join window | 分割したウィンドウを結合 | +----------------+-------------------------------------------------+ +| [Switch file] | ウィンドウ変更メニューを表示 | ++----------------+-------------------------------------------------+ + + +Switch file menu ++++++++++++++++++ + ++---------------------+-----------------------------------------------------------+ +| Switch file | ウィンドウで表示しているファイルを切り替える。 | +| | カーソル左右でファイルを選択する。 | ++---------------------+-----------------------------------------------------------+ +| New file here | 現在のウィンドウで新規にファイルを作成 | ++---------------------+-----------------------------------------------------------+ +| open file here | 現在のウィンドウでファイルを開く | ++---------------------+-----------------------------------------------------------+ +| Recently used files | 現在のウィンドウで最近使ったファイルの一覧を表示する | ++---------------------+-----------------------------------------------------------+ +| Recently used dirs | 現在のウィンドウで最近使ったディレクトリの一覧を表示する | ++---------------------+-----------------------------------------------------------+ キー設定 @@ -302,6 +320,8 @@ Window menu +---------------+----------------------------------------------------+ | F1, alt+/ | メニューを表示 | +---------------+----------------------------------------------------+ +| Alt-w | ウィンドウ変更メニューを表示 | ++---------------+----------------------------------------------------+ | Alt-M v | テキスト変換メニューを表示 | +---------------+----------------------------------------------------+ diff --git a/README.rst b/README.rst index 748a036..a17ba7d 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ Kaa is an easy yet powerful text editor for console user interface, providing nu - More to come! -.. image:: http://kaaedit.github.io/screenshots/kaa_multiwindow.png +.. image:: http://www.gembook.org/static/images/kaa_multiwindow.png See http://kaaedit.github.io for more screen shots. @@ -169,13 +169,12 @@ File menu +------------+----------------------------------------------------+ | Close All | Close all frames. | +------------+----------------------------------------------------+ -| Recently | Show recently used files menu. | +| [Recently] | Show recently used files menu. | +------------+----------------------------------------------------+ | Quit | Terminate kaa. | +------------+----------------------------------------------------+ - Recently used files memu ~~~~~~~~~~~~~~~~~~~~~~~~ @@ -185,6 +184,7 @@ Recently used files memu | Recently used dirs | Show list of recently used directories. | +---------------------+-----------------------------------------+ + Edit menu +++++++++ @@ -207,9 +207,10 @@ Edit menu +---------------------+-----------------------------------------+ | Complete | Word completion. | +---------------------+-----------------------------------------+ -| Convert | Show text convert menu. | +| [Convert] | Show text convert menu. | +---------------------+-----------------------------------------+ + Text convert menu ~~~~~~~~~~~~~~~~~~~~ @@ -272,8 +273,6 @@ Window menu | Frame list | Show list of frame windows. Use left/right | | | arrow key to change active frame. | +----------------+-------------------------------------------------+ -| Switch file | Switch content of active window. | -+----------------+-------------------------------------------------+ | Split vert | Split current window vertically. | +----------------+-------------------------------------------------+ | Split horz | Split current window horizontally. | @@ -283,8 +282,28 @@ Window menu +----------------+-------------------------------------------------+ | Next window | Activate next window. | +----------------+-------------------------------------------------+ +| Prev window | Activate previous window. | ++----------------+-------------------------------------------------+ | Join window | Join splitted window. | +----------------+-------------------------------------------------+ +| [Switch file] | Show switch window menu. | ++----------------+-------------------------------------------------+ + + +Switch file menu ++++++++++++++++++ + ++---------------------+-------------------------------------------------+ +| Switch file | Switch content of active window. | ++---------------------+-------------------------------------------------+ +| New file here | Create new file to active window. | ++---------------------+-------------------------------------------------+ +| open file here | Open existing file to active window. | ++---------------------+-------------------------------------------------+ +| Recently used files | Show list of recently used files. | ++---------------------+-------------------------------------------------+ +| Recently used dirs | Show list of recently used directories. | ++---------------------+-------------------------------------------------+ Key bindings @@ -296,6 +315,8 @@ Menu keys +---------------+----------------------------------------------------+ | F1, alt+/ | Show menu. | +---------------+----------------------------------------------------+ +| Alt-w | Show switch file menu. | ++---------------+----------------------------------------------------+ | Alt-M v | Show text conversion menu. | +---------------+----------------------------------------------------+ @@ -525,13 +546,22 @@ Links Version history ================= -0.7 - 2013.11. ---------------- +0.7 - 2013.11.5 +---------------- - Paste from clipboard history. - Word completion list now contains text from clipboard history. +- New command: New file here. + +- New command: Open file here. + +- New command: Open recently used file here. + +- New command: Open recently used directory here. + + Past versions -------------- diff --git a/kaa/filetype/default/menu.py b/kaa/filetype/default/menu.py index 5e4b0d1..d3d0bae 100644 --- a/kaa/filetype/default/menu.py +++ b/kaa/filetype/default/menu.py @@ -22,7 +22,7 @@ 'RECENTLY-USED-FILES': [['Recently used &Files', None, 'file.recently-used-files'], - ['Recently used &Dir', None, 'file.recently-used-directories']], + ['Recently used &Dirs', None, 'file.recently-used-directories']], 'EDIT': [['&Cut', None, 'edit.cut'], @@ -69,5 +69,5 @@ ['&New file here', None, 'file.new-to'], ['&Open file here', None, 'file.open-to'], ['Recently used &Files', None, 'file.recently-used-files-to'], - ['Recently used &Dir', None, 'file.recently-used-directories-to']], + ['Recently used &Dirs', None, 'file.recently-used-directories-to']], } diff --git a/kaa/version.py b/kaa/version.py index 41339f8..a894324 100644 --- a/kaa/version.py +++ b/kaa/version.py @@ -1,5 +1,5 @@ import sys, os -KAA_VERSION = (0, 6, 0) +KAA_VERSION = (0, 7, 0) def version_info(): return '''\ diff --git a/setup.py b/setup.py index c666aa9..574b4ff 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read(fname): setup( cmdclass = cmdclass, name = "kaaedit", - version = "0.6.0", + version = "0.7.0", description='kaa - console text editor.', url='https://github.com/kaaedit/kaa', author='Atsuo Ishimoto',