Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Scott Hansen <firecat four one five three at gmail dot com>
Scott Hansen <tech at firecat53 dot net>

Based on code contributed by A.M. Kuchling <amk at amk dot ca>

Expand Down
17 changes: 12 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,15 @@ limited. For a more fully featured CSV viewer/spreadsheet app check out the**

View a CSV file in a spreadsheet-like display.

Posted by Scott Hansen <firecat4153@gmail.com>
Posted by Scott Hansen <tech@firecat53.net>

Original code forked from: http://www.amk.ca/files/simple/tabview.txt

Contributed by A.M. Kuchling <amk@amk.ca>

Other Contributors:

+ Abdurrahmaan Iqbal
+ Matus Gura <matus.gura@gmail.com>
+ Nathan Typanski <ntypanski@gmail.com>
+ Sébastien Celles <s.celles@gmail.com>
Expand All @@ -44,7 +45,7 @@ it are shown the contents of that cell.
Features:
---------
* Python 3.4+
* Spreadsheet-like view for easily visualizing tabular data
* Spreadsheet-like view for easily visualizing and editing tabular data
* Vim-like navigation (h,j,k,l, g(top), G(bottom), 12G goto line 12, m - mark,
' - goto mark, etc.)
* Toggle persistent header row
Expand Down Expand Up @@ -128,8 +129,14 @@ Keybindings:
if num not given
**Ctrl-g** Show file/data information
**Insert or m** Memorize this position
**Delete or '** Return to memorized position (if any)
**'** Return to memorized position (if any)
**Enter** View full cell contents in pop-up window.
**d** (Editing) Delete cell content
**Delete** (Editing) Delete entire row
**e/E** (Editing) Edit cell - `e` edits current content, `E` does not.
**D** (Editing) Duplicate row
**u/r** (Editing) Undo/redo (NOTE: naïve implementation)
**CTRL+S** (Editing) Save file
**/** Search
**n** Next search result
**p** Previous search result
Expand All @@ -143,8 +150,8 @@ Keybindings:
**A** 'Natural Sort' the table (descending)
**#** Sort numerically by the current column (ascending)
**@** Sort numerically by the current column (descending)
**r** Reload file/data. Also resets sort order
**y** Yank cell contents to the clipboard
**R** Reload file/data. Also resets sort order
**y/P** Yank cell contents to the clipboard (P pastes last yank)
(requires xsel or xclip)
**[num]c** Toggle variable column width mode (mode/max),
or set width to [num]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
description="A curses command-line CSV and list (tabular data) viewer",
long_description=open('README.rst', 'rb').read().decode('utf-8'),
author="Scott Hansen",
author_email="firecat4153@gmail.com",
author_email="tech@firecat53.net",
url="https://github.com/Tabviewer/tabview",
download_url="https://github.com/Tabviewer/tabview/tarball/1.4.4",
packages=['tabview'],
Expand Down
Loading