Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from cyanzhong:master #32

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
f51b6ba
Add guidance for using search
cyanzhong Apr 10, 2022
ac49305
Release Notes is now What's New
cyanzhong Apr 11, 2022
5e1fe26
Refreshed keyboard shortcuts
cyanzhong Apr 13, 2022
eb1832f
Open Quickly
cyanzhong Apr 13, 2022
419f7ce
Performance tips for external files
cyanzhong Apr 13, 2022
c288c98
Search & Replace is now supported
cyanzhong Apr 17, 2022
9e280d9
Don't use mono-spaced font for ⌘ ⇧ O
cyanzhong Apr 17, 2022
26719b8
Update what's new page
cyanzhong Apr 17, 2022
d8e2852
Improve dark mode for images
cyanzhong Apr 17, 2022
442da24
Update what's new page
cyanzhong May 1, 2022
4563c17
Replace with regex groups
cyanzhong May 7, 2022
2b19495
Add missing screenshot
cyanzhong May 8, 2022
5f1fdba
Update what's new page
cyanzhong May 16, 2022
b0b5205
New scheme to prepend text
cyanzhong May 18, 2022
2c968a7
Docs for command palette
cyanzhong Jun 5, 2022
8d58fc7
Obviously macOS app was released a long time ago
cyanzhong Jun 6, 2022
e4c6bcd
New keyboard shortcuts for command palette
cyanzhong Jun 11, 2022
3e23884
Add missing emoji in what's new
cyanzhong Jun 13, 2022
dd98ceb
New keyboard shortcut to finish editing
cyanzhong Jul 9, 2022
da2fb06
Improve URL schemes for opening files to support start editing
cyanzhong Jul 17, 2022
bb46b43
New URL scheme to start search in the app
cyanzhong Jul 17, 2022
4226e55
Add PlantUML support
cyanzhong Jul 28, 2022
aa9ae2d
Update what's new page
cyanzhong Jul 28, 2022
a613d51
Improved file creation workflow
cyanzhong Jul 31, 2022
5f58aad
Add explanation for wiki links
cyanzhong Aug 6, 2022
7010aef
Update what's new page
cyanzhong Aug 8, 2022
eae49bb
Update what's new page
cyanzhong Aug 15, 2022
f05f9ef
Update what's new page
cyanzhong Sep 8, 2022
9a4a549
Unlink dev.taio.app
cyanzhong Sep 12, 2022
4e535fe
Update what's new page
cyanzhong Sep 18, 2022
5754709
Add basic AppleScript to work with Hook
cyanzhong Sep 24, 2022
5f92e96
New docs for customizable previews
cyanzhong Oct 8, 2022
6a50898
Better explanation for color remixing
cyanzhong Oct 10, 2022
754dbb4
Quick switcher for iPadOS 16
cyanzhong Oct 10, 2022
b0e1534
Writing styles
cyanzhong Oct 12, 2022
c68b727
What's new for Live Activity and Dynamic Island
cyanzhong Oct 30, 2022
d3eccb8
Expose URL scheme for Live Notes
cyanzhong Nov 1, 2022
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
Prev Previous commit
Next Next commit
Improve URL schemes for opening files to support start editing
  • Loading branch information
cyanzhong committed Jul 17, 2022
commit da2fb065616d6a9b73e60a7ee7449ed5c990b82e
12 changes: 8 additions & 4 deletions docs/cn/integration/url-schemes.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ taio://editor?action=new&path=path&location=0
## 在编辑器中打开文件

```
taio://editor?action=open&path=path&location=0
taio://editor?action=open&path=path&location=0&edit-pos=none
```

`location` 0:本地文件,1:iCloud 云盘文件,2: 添加的外部位置。
`location` 0:本地文件,1:iCloud 云盘文件,2:添加的外部位置。

`edit-pos` none:不开始编辑,beginning:从文件头部开始编辑,end:从文件尾部开始编辑。

当 `path` 是目录时,将在文件管理器中打开该目录。

Expand All @@ -75,16 +77,18 @@ taio://editor?action=open&tag=tag
## 打开快捷草稿

```
taio://drafts
taio://drafts?edit-pos=none
```

`edit-pos` none:不开始编辑,beginning:从文件头部开始编辑,end:从文件尾部开始编辑。

## 追加内容到文件

```
taio://editor?action=append&path=path&location=0&text=text
```

`location` 0:本地文件,1:iCloud 云盘文件,2: 添加的外部位置。
`location` 0:本地文件,1:iCloud 云盘文件,2添加的外部位置。

文件不存在时将会自动创建。

Expand Down
8 changes: 6 additions & 2 deletions docs/integration/url-schemes.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,13 @@ taio://editor?action=new&path=path&location=0
## Open A File in The Editor

```
taio://editor?action=open&path=path&location=0
taio://editor?action=open&path=path&location=0&edit-pos=none
```

`location` 0: local files, 1: iCloud Drive files, 2: Added external locations.

`edit-pos` none: don't start editing, beginning: start editing from the beginging, end: start editing from the end.

It opens the folder in file explorer when `path` is a folder.

## Open A File in Preview Mode
Expand All @@ -75,9 +77,11 @@ taio://editor?action=open&tag=tag
## Open Quick Drafts

```
taio://drafts
taio://drafts?edit-pos=none
```

`edit-pos` none: don't start editing, beginning: start editing from the beginging, end: start editing from the end.

## Append Text to File

```
Expand Down