Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.

Commit 6d8b745

Browse files
authored
Merge pull request #84 from trey-wallis/dev
Upgrade menus
2 parents 675012a + e790bc8 commit 6d8b745

File tree

21 files changed

+540
-252
lines changed

21 files changed

+540
-252
lines changed

README.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ Obsidian Notion-Like Tables allows you to create markdown tables using an interf
2525
- 2.0.0
2626
- Table id row support & upgrading caching system
2727
- 2.1.0
28-
- Create new row with keyboard
29-
- Insert new column
30-
- New tag colors
28+
- Insert new column to the left or right of an existing column
29+
- Move column to the left or right
30+
- Move row up or down
31+
- Right click to copy cell contents
3132
- 2.2.0
3233
- Navigate cells with arrow key and tab key
34+
- Create new row with keyboard
3335
- 2.3.0
3436
- TBA
3537

@@ -92,6 +94,10 @@ If you want to display a url, type the url making sure it begins with `http://`
9294

9395
![Screenshot](.readme/url.png)
9496

97+
### Copy Cell Content
98+
99+
Right click a cell and its content will be added to your clipboard
100+
95101
### Undoing a Type Change
96102

97103
If you accidently change your column to a different type, all data will be erased. It this happens, go to editing mode and use `ctrl+z` or `option-z` on your keyboard to undo the change.

manifest.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
{
2-
"id": "notion-like-tables",
3-
"name": "Notion-Like Tables",
4-
"version": "2.0.1",
5-
"minAppVersion": "0.12.0",
6-
"description": "Create markdown tables using an interface similar to that found in Notion.so.",
7-
"author": "Trey Wallis",
8-
"authorUrl": "https://github.com/trey-wallis",
9-
"isDesktopOnly": false
10-
}
1+
{
2+
"id": "notion-like-tables",
3+
"name": "Notion-Like Tables",
4+
"minAppVersion": "0.12.0",
5+
"description": "Create markdown tables using an interface similar to that found in Notion.so.",
6+
"author": "Trey Wallis",
7+
"authorUrl": "https://github.com/trey-wallis",
8+
"isDesktopOnly": false,
9+
"version": "2.1.0"
10+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-notion-like-tables",
3-
"version": "2.0.1",
3+
"version": "2.1.0",
44
"description": "Notion-like tables for Obsidian.md",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)