All Projects → rpeshkov → vscode-text-tables

rpeshkov / vscode-text-tables

Licence: MIT license
VSCode extension that brings the power of Emacs table editing

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to vscode-text-tables

Ob Async
Asynchronous src_block execution for org-babel
Stars: ✭ 249 (+591.67%)
Mutual labels:  org-mode
emacs-ob-racket
Emacs Org-Mode Babel code block Racket support
Stars: ✭ 22 (-38.89%)
Mutual labels:  org-mode
uniorg
An accurate Org-mode parser
Stars: ✭ 190 (+427.78%)
Mutual labels:  org-mode
org-preview-html
Automatically preview org-exported HTML files within Emacs.
Stars: ✭ 160 (+344.44%)
Mutual labels:  org-mode
dotfiles
I showed you my source code, pls respond
Stars: ✭ 45 (+25%)
Mutual labels:  org-mode
this-month-in-org
A monthly blog on developments with Org
Stars: ✭ 40 (+11.11%)
Mutual labels:  org-mode
Emacs Easy Hugo
Emacs major mode for managing hugo
Stars: ✭ 235 (+552.78%)
Mutual labels:  org-mode
idle-org-agenda
A package that shows your agenda when Emacs is idle
Stars: ✭ 40 (+11.11%)
Mutual labels:  org-mode
dotfiles
My dotfiles - Emacs centric OSX Big Sur
Stars: ✭ 29 (-19.44%)
Mutual labels:  org-mode
eva
Emacs-based Virtual Assistant
Stars: ✭ 133 (+269.44%)
Mutual labels:  org-mode
trio
Datatype agnostic triple store & query engine API
Stars: ✭ 78 (+116.67%)
Mutual labels:  org-mode
basictabler
Construct Rich Tables for Output to HTML/Excel
Stars: ✭ 34 (-5.56%)
Mutual labels:  tables
agenda
Org agenda in the console
Stars: ✭ 112 (+211.11%)
Mutual labels:  org-mode
ox-leanpub
Org-mode exporter for Leanpub books - mirrored from GitLab
Stars: ✭ 18 (-50%)
Mutual labels:  org-mode
node-dvbtee
MPEG2 transport stream parser for Node.js with support for television broadcast PSIP tables and descriptors
Stars: ✭ 24 (-33.33%)
Mutual labels:  tables
Evil Org Mode
Supplemental evil-mode keybindings to emacs org-mode
Stars: ✭ 241 (+569.44%)
Mutual labels:  org-mode
my-emacs
My Emacs configuration
Stars: ✭ 35 (-2.78%)
Mutual labels:  org-mode
mkdocs-table-reader-plugin
MkDocs plugin that adds a {{ read_csv('table.csv') }} markdown tag to directly insert CSV files as a table into a page.
Stars: ✭ 60 (+66.67%)
Mutual labels:  tables
Tplyr
atorus-research.github.io/Tplyr/
Stars: ✭ 76 (+111.11%)
Mutual labels:  tables
org-table-sticky-header
Sticky header for org-mode tables
Stars: ✭ 31 (-13.89%)
Mutual labels:  org-mode

Text Tables

version license Build Status

Text tables

VSCode extension that brings the power of Emacs table editing.

Sample

Features

  • Tables reformat
  • Easy table cells navigation
  • Support for org and markdown tables

Activation

Extension is automatically activated when you open markdown or org file. If you want to use this extension in any other file, just trigger Text Tables: Enable command in command pallete.

Commands

Extension provides several commands that are available in the Command Palette:

  • Text Tables: Enable - enable extension.
  • Text Tables: Create table - create new table in cursor position.
  • Text Tables: Format under cursor - reformat the table under cursor.
  • Text Tables: Enter table mode - enter table mode.
  • Text Tables: Exit table mode - exit table mode.
  • Text Tables: Go to next cell - switch to next cell in current table.
  • Text Tables: Go to previous cell - switch to previous cell in current table.
  • Text Tables: Clear cell - clear cell under cursor.

You can access all of the above commands from the command pallete (Ctrl+Shift+p or Cmd+Shift+p)

Table mode

Table mode is the mode where some of the default keybindings have another action assigned.

To enter table mode you may execute command Text Tables: Enter table mode from command palette or press Ctrl+q Ctrl+q shortcut to toggle mode. To control whether you're in table mode or not, see the icon in the status bar of Visual Studio Code:

Table mode status

When in table mode, Tab and Shift+Tab keybindings will navigate next/previous cell accordingly.

Navigation

Keybindings

  • Ctrl+q f - format table under cursor.
  • Ctrl+q space - clear cell under cursor.
  • Ctrl+q Ctrl+q - toggle table mode.

In table mode

  • Tab - navigate to the next cell in table.
  • Shift+Tab - navigate to the previous cell in table.

Custom keybindings

Extension introduces additional tableMode when-clause that you may use to define your own keybindings when in table mode.

Sample keybinding:

{
    "key": "tab",
    "command": "text-tables.gotoNextCell",
    "when": "tableMode"
}

Settings

This extension introduces some settings that you may setup in your user settings or workspace settings.

Available settings:

  • text-tables.mode - sets the type of tables. Valid values are: org and markdown.
  • text-tables.showStatus - controls whether to show or not status item for table mode.

Contribution

All contributions are welcome.

If you found a bug or want to propose new feature for the extension, feel free to create an issue.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].