Fossil SCM <<
Previous Next >> uv
Leo Editor
https://leo-editor.github.io
Leo Editor 是一個大綱編輯器, 單一節點資料可以透過 clone 放入多個其他節點資料中.
可以利用 @clean 節點指令可結合 @others 與指定的檔案內容同步.
利用 @path 指定目錄.
ctrl + i : insert
ctrl + r : move right
ctrl + l : move left
ctrl + u : move up
ctrl + d : move down
The execute-script command pre-defines three names: c, g, and p. c is the commander of the outline in which the script executes. g is the leo.core.leoGlobals module, containing dozens of useful functions and classes. p is the position of the presently selected node.
g.es() 透過 leo.core.leoGlobals g 中的 echo string 方法列印資料.
遞迴導入程式碼:
c.recursiveImport(
dir_ = 'path to file or directory',
kind = '@clean', # or '@file' or '@auto'
safe_at_file = False, # True: generate @@clean nodes.
theTypes = None, # Same as ['.py']
)
Fossil SCM <<
Previous Next >> uv