Skip to content

Commit

Permalink
Saved by TiddlyWiki
Browse files Browse the repository at this point in the history
  • Loading branch information
uzvg committed Mar 6, 2024
1 parent 8434a04 commit 921a1e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,8 @@

<li>New Tiddler</li>

<li>New Tiddler 1</li>

<li>nodejs tiddlywiki使用说明</li>

<li>nvim</li>
Expand Down Expand Up @@ -657,7 +659,7 @@
{"created":"20240306125852983","title":"$:/state/tab-2065006209","text":"$:/core/ui/ControlPanel/Saving/GitHub","modified":"20240306125852983"},
{"created":"20240306125845437","title":"$:/state/tab/sidebar--595412856","text":"$:/core/ui/SideBar/Recent","modified":"20240306125845437"},
{"title":"$:/status/RequireReloadDueToPluginChange","text":"no"},
{"title":"$:/StoryList","created":"20240306125847749","text":"","list":"[[anoter new wiki]] [[New Tiddler]] $:/ControlPanel Welcome!","modified":"20240306125847749"},
{"title":"$:/StoryList","created":"20240306140044873","text":"","list":"[[New Tiddler 1]] [[New Tiddler]] [[anoter new wiki]] $:/ControlPanel Welcome!","modified":"20240306140109818"},
{"title":"$:/tags/PageControls","created":"20230302040304217","creator":"uzvg","list":"$:/core/ui/Buttons/new-tiddler $:/core/ui/Buttons/home $:/core/ui/Buttons/close-all $:/core/ui/Buttons/fold-all $:/core/ui/Buttons/unfold-all $:/core/ui/Buttons/permaview $:/core/ui/Buttons/new-journal $:/core/ui/Buttons/new-image $:/core/ui/Buttons/import $:/core/ui/Buttons/export-page $:/core/ui/Buttons/control-panel $:/core/ui/Buttons/advanced-search $:/core/ui/Buttons/manager $:/core/ui/Buttons/tag-manager $:/core/ui/Buttons/language $:/core/ui/Buttons/palette $:/core/ui/Buttons/theme $:/core/ui/Buttons/layout $:/core/ui/Buttons/storyview $:/core/ui/Buttons/encryption $:/core/ui/Buttons/timestamp $:/core/ui/Buttons/full-screen $:/core/ui/Buttons/print $:/core/ui/Buttons/save-wiki $:/core/ui/Buttons/refresh $:/core/ui/Buttons/more-page-actions","modified":"20230302040304217","modifier":"uzvg","type":"text/vnd.tiddlywiki","revision":"0","bag":"default"},
{"title":"$:/tags/SideBar","created":"20230302143036073","list":"$:/core/ui/SideBar/Open coffeeWeekly Contents $:/core/ui/SideBar/Recent $:/core/ui/SideBar/Tools $:/core/ui/SideBar/More","modified":"20230326144912261","type":"text/vnd.tiddlywiki","revision":"0","bag":"default"},
{"title":"$:/theme","created":"20230302040225005","creator":"uzvg","modified":"20230327145325785","modifier":"uzvg","type":"text/vnd.tiddlywiki","text":"$:/themes/tiddlywiki/snowwhite","revision":"0","bag":"default"},
Expand Down Expand Up @@ -745,6 +747,7 @@
{"title":"MyMacros","created":"20230302150002055","modified":"20230305090210649","tags":"$:/tags/Macro","type":"text/vnd.tiddlywiki","text":"\\define","revision":"0","bag":"default"},
{"title":"ncdu","created":"20230303094750834","modified":"20230305170002082","tags":"LinuxSoftware Interesting","type":"text/vnd.tiddlywiki","text":"ncdu是Linux下一个非常好用的磁盘占用分析工具\n\n!! 安装:\n\n```zsh\nsudo pacman -S ncdu\n```\n\n!! 使用:\n\n```zsh\nncdu\n```\n","revision":"0","bag":"default"},
{"created":"20240306125926992","text":"","tags":"","title":"New Tiddler","modified":"20240306125930286"},
{"created":"20240306140111060","text":"","tags":"","title":"New Tiddler 1","modified":"20240306140113434"},
{"title":"nodejs tiddlywiki使用说明","created":"20200623052957134","modified":"20230325153048346","status":"pending","tags":"tiddlywiki","type":"text/vnd.tiddlywiki","text":"!! 安装及更新:\n\n```bash\n# 安装\nsudo pacman -S nodejs npm\nsudo npm -g tiddlywiki\n\n# 更新\nsudo npm udpate -g tiddlywiki\n```\n\n!! 初始化:\n\n```bash\n#创建一个用于存储tiddlywiki文件的空文件夹\nmkdir wikiFolder\n# 用tiddlywiki的server版本初始化该文件夹\ntiddlywiki path/to/wikiFolder --init server\n# 打开tiddlywiki,默认端口:8080\ntiddlywiki /path/to/wikiFolder --listen\n# 在指定端口打开打开\ntiddlywiki /path/to/wikiFolder --listen port=8090\n```\n\n打开界面:http://127.0.0.1:8080\n\n!! 构建部署:\n\n```bash\ntiddlywiki /path/to/wikiFolder --build index\n```\n\n打开wiki所在根目录下的`output`文件夹,即可看见`index.html`\n\n!! 其他:\n\nnodejs版的tiddlywiki本身附带一些[[小脚本|]]","revision":"0","bag":"default"},
{"title":"nvim","caption":"vim编辑器使用技巧合集","color":"#d94b19","created":"20230302145607559","modified":"20230325151310276","tags":"LinuxSoftware","type":"text/vnd.tiddlywiki","revision":"0","bag":"default"},
{"title":"nvim剪贴板","created":"20200727110721841","modified":"20230325151316976","tags":"nvim","tmap.id":"29b59bb9-ecd5-40ad-9c93-9ea0ed312d66","type":"text/vnd.tiddlywiki","text":"''set vim clipboard''\n\n* Nvim has no direct connection to the system clipboard. Instead it depends on a ''provider'' which transparently uses shell commands to communicate with thesystem clipboard or any other clipboard \"backend\".\n* To ALWAYS use the clipboard for ALL operations (instead of interacting with the '+' and/or '*' registers explicitly)\n** `set clipboard+=unnamedplus`\n* The presence of a working clipboard tool implicitly enables the '+' and '*'registers. Nvim looks for these clipboard tools, in order of priority:\n*# pbcopy, pbpaste (macOS)\n*# wl-copy, wl-paste (if $WAYLAND_DISPLAY is set)\n*# xclip (if $DISPLAY is set)\n*# xsel (if $DISPLAY is set)\n* Set clipboard in gnome\n*# `sudo pacman -S wl-clipboard`\n*# ''remap keymap''\n*# \u003C \n\u003C\u003C\u003C\n\"clipboard behavior\n\nnnoremap y \"+y\n\nvnoremap y \"+y\n\nnnoremap yy \"+yy\n\nnnoremap p \"+p\n\u003C\u003C\u003C\n---\nReference:\n\n* `help clipboard`\n","revision":"0","bag":"default"},
Expand Down

0 comments on commit 921a1e4

Please sign in to comment.