├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .trunk ├── .gitignore ├── configs │ ├── .markdownlint.yaml │ ├── .shellcheckrc │ └── .yamllint.yaml └── trunk.yaml ├── LICENSE ├── Makefile ├── docs ├── CHANGELOG.md └── README.md ├── examples ├── .inputs │ ├── zsh-autosuggestions.zsh │ └── zsh-syntax-highlighting.zsh ├── zsh-autosuggestions.zsh.adoc ├── zsh-autosuggestions.zsh.pdf ├── zsh-syntax-highlighting.zsh.adoc └── zsh-syntax-highlighting.zsh.pdf ├── src ├── run-tree-convert.mod ├── token-types.mod ├── zsd-detect.main ├── zsd-detect.preamble ├── zsd-process-buffer ├── zsd-to-adoc.main ├── zsd-to-adoc.preamble ├── zsd-transform.main ├── zsd-transform.preamble ├── zsd-trim-indent ├── zsd.main └── zsd.preamble ├── test ├── Makefile ├── cross-calls │ ├── cross-calls1.zsh.adoc │ ├── cross-calls2.zsh.adoc │ └── data │ │ ├── bodies │ │ ├── cross-calls1.zsh │ │ ├── cross-calls1.zsh.comments │ │ ├── cross-calls2.zsh │ │ └── cross-calls2.zsh.comments │ │ ├── call_tree.zsd │ │ ├── extended │ │ ├── cross-calls1.zsh │ │ └── cross-calls2.zsh │ │ ├── functions │ │ ├── cross-calls1.zsh │ │ │ ├── myfun1 │ │ │ └── myfun2 │ │ └── cross-calls2.zsh │ │ │ ├── myfun1 │ │ │ └── myfun3 │ │ ├── rev_call_tree.zsd │ │ └── trees │ │ ├── cross-calls1.zsh │ │ └── Script_Body_.tree │ │ └── cross-calls2.zsh │ │ └── Script_Body_.tree ├── cross-calls1.zsh ├── cross-calls2.zsh ├── nested.zsh ├── nested │ ├── data │ │ ├── bodies │ │ │ ├── nested.zsh │ │ │ └── nested.zsh.comments │ │ ├── call_tree.zsd │ │ ├── descriptions │ │ │ └── nested.zsh │ │ │ │ ├── dummy │ │ │ │ ├── test1 │ │ │ │ ├── test2 │ │ │ │ ├── test3 │ │ │ │ ├── test4 │ │ │ │ ├── test5 │ │ │ │ └── test6 │ │ ├── extended │ │ │ └── nested.zsh │ │ ├── functions │ │ │ └── nested.zsh │ │ │ │ ├── dummy │ │ │ │ ├── test1 │ │ │ │ ├── test2 │ │ │ │ ├── test3 │ │ │ │ ├── test4 │ │ │ │ ├── test5 │ │ │ │ └── test6 │ │ ├── rev_call_tree.zsd │ │ └── trees │ │ │ └── nested.zsh │ │ │ ├── test1.tree │ │ │ ├── test2.tree │ │ │ ├── test3.tree │ │ │ ├── test4.tree │ │ │ ├── test5.tree │ │ │ └── test6.tree │ └── nested.zsh.adoc ├── real-zsyh.zsh └── real-zsyh │ ├── data │ ├── autoload │ │ └── real-zsyh.zsh │ │ │ ├── add-zsh-hook │ │ │ └── is-at-least │ ├── bodies │ │ ├── real-zsyh.zsh │ │ └── real-zsyh.zsh.comments │ ├── call_tree.zsd │ ├── descriptions │ │ └── real-zsyh.zsh │ │ │ ├── _zsh_highlight │ │ │ ├── _zsh_highlight_add_highlight │ │ │ ├── _zsh_highlight_apply_zle_highlight │ │ │ ├── _zsh_highlight_bind_widgets │ │ │ ├── _zsh_highlight_buffer_modified │ │ │ ├── _zsh_highlight_call_widget │ │ │ ├── _zsh_highlight_cursor_moved │ │ │ ├── _zsh_highlight_load_highlighters │ │ │ ├── _zsh_highlight_preexec_hook │ │ │ ├── add-zsh-hook │ │ │ └── is-at-least │ ├── extended │ │ └── real-zsyh.zsh │ ├── features │ │ └── real-zsyh.zsh │ │ │ ├── Script_Body_ │ │ │ ├── add-zsh-hook │ │ │ ├── autoload │ │ │ ├── eval │ │ │ ├── is-at-least │ │ │ ├── unalias │ │ │ └── zmodload │ │ │ ├── _zsh_highlight │ │ │ ├── eval │ │ │ ├── setopt │ │ │ └── type │ │ │ ├── _zsh_highlight_bind_widgets │ │ │ ├── eval │ │ │ ├── setopt │ │ │ ├── zle │ │ │ └── zmodload │ │ │ ├── _zsh_highlight_call_widget │ │ │ └── zle │ │ │ ├── _zsh_highlight_load_highlighters │ │ │ ├── eval │ │ │ ├── setopt │ │ │ └── type │ │ │ └── add-zsh-hook │ │ │ ├── autoload │ │ │ └── getopts │ ├── functions │ │ └── real-zsyh.zsh │ │ │ ├── _zsh_highlight │ │ │ ├── _zsh_highlight_add_highlight │ │ │ ├── _zsh_highlight_apply_zle_highlight │ │ │ ├── _zsh_highlight_bind_widgets │ │ │ ├── _zsh_highlight_buffer_modified │ │ │ ├── _zsh_highlight_call_widget │ │ │ ├── _zsh_highlight_cursor_moved │ │ │ ├── _zsh_highlight_load_highlighters │ │ │ └── _zsh_highlight_preexec_hook │ ├── hooks │ │ └── real-zsyh.zsh │ │ │ └── _zsh_highlight_preexec_hook │ ├── rev_call_tree.zsd │ └── trees │ │ └── real-zsyh.zsh │ │ ├── Script_Body_.tree │ │ ├── _zsh_highlight.tree │ │ └── _zsh_highlight_call_widget.tree │ └── real-zsyh.zsh.adoc └── zsd.config /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.gitignore -------------------------------------------------------------------------------- /.trunk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.trunk/.gitignore -------------------------------------------------------------------------------- /.trunk/configs/.markdownlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.trunk/configs/.markdownlint.yaml -------------------------------------------------------------------------------- /.trunk/configs/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.trunk/configs/.shellcheckrc -------------------------------------------------------------------------------- /.trunk/configs/.yamllint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.trunk/configs/.yamllint.yaml -------------------------------------------------------------------------------- /.trunk/trunk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/.trunk/trunk.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/Makefile -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/.inputs/zsh-autosuggestions.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/.inputs/zsh-autosuggestions.zsh -------------------------------------------------------------------------------- /examples/.inputs/zsh-syntax-highlighting.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/.inputs/zsh-syntax-highlighting.zsh -------------------------------------------------------------------------------- /examples/zsh-autosuggestions.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/zsh-autosuggestions.zsh.adoc -------------------------------------------------------------------------------- /examples/zsh-autosuggestions.zsh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/zsh-autosuggestions.zsh.pdf -------------------------------------------------------------------------------- /examples/zsh-syntax-highlighting.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/zsh-syntax-highlighting.zsh.adoc -------------------------------------------------------------------------------- /examples/zsh-syntax-highlighting.zsh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/examples/zsh-syntax-highlighting.zsh.pdf -------------------------------------------------------------------------------- /src/run-tree-convert.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/run-tree-convert.mod -------------------------------------------------------------------------------- /src/token-types.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/token-types.mod -------------------------------------------------------------------------------- /src/zsd-detect.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-detect.main -------------------------------------------------------------------------------- /src/zsd-detect.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-detect.preamble -------------------------------------------------------------------------------- /src/zsd-process-buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-process-buffer -------------------------------------------------------------------------------- /src/zsd-to-adoc.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-to-adoc.main -------------------------------------------------------------------------------- /src/zsd-to-adoc.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-to-adoc.preamble -------------------------------------------------------------------------------- /src/zsd-transform.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-transform.main -------------------------------------------------------------------------------- /src/zsd-transform.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-transform.preamble -------------------------------------------------------------------------------- /src/zsd-trim-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd-trim-indent -------------------------------------------------------------------------------- /src/zsd.main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd.main -------------------------------------------------------------------------------- /src/zsd.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/src/zsd.preamble -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/cross-calls/cross-calls1.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/cross-calls1.zsh.adoc -------------------------------------------------------------------------------- /test/cross-calls/cross-calls2.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/cross-calls2.zsh.adoc -------------------------------------------------------------------------------- /test/cross-calls/data/bodies/cross-calls1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/bodies/cross-calls1.zsh -------------------------------------------------------------------------------- /test/cross-calls/data/bodies/cross-calls1.zsh.comments: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/bodies/cross-calls2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/bodies/cross-calls2.zsh -------------------------------------------------------------------------------- /test/cross-calls/data/bodies/cross-calls2.zsh.comments: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/call_tree.zsd -------------------------------------------------------------------------------- /test/cross-calls/data/extended/cross-calls1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/extended/cross-calls1.zsh -------------------------------------------------------------------------------- /test/cross-calls/data/extended/cross-calls2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/extended/cross-calls2.zsh -------------------------------------------------------------------------------- /test/cross-calls/data/functions/cross-calls1.zsh/myfun1: -------------------------------------------------------------------------------- 1 | echo "Cross-calls test" 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/functions/cross-calls1.zsh/myfun2: -------------------------------------------------------------------------------- 1 | echo "Cross-calls test" 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/functions/cross-calls2.zsh/myfun1: -------------------------------------------------------------------------------- 1 | echo "Cross-calls test" 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/functions/cross-calls2.zsh/myfun3: -------------------------------------------------------------------------------- 1 | echo "Cross-calls test" 2 | -------------------------------------------------------------------------------- /test/cross-calls/data/rev_call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/rev_call_tree.zsd -------------------------------------------------------------------------------- /test/cross-calls/data/trees/cross-calls1.zsh/Script_Body_.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/trees/cross-calls1.zsh/Script_Body_.tree -------------------------------------------------------------------------------- /test/cross-calls/data/trees/cross-calls2.zsh/Script_Body_.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls/data/trees/cross-calls2.zsh/Script_Body_.tree -------------------------------------------------------------------------------- /test/cross-calls1.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls1.zsh -------------------------------------------------------------------------------- /test/cross-calls2.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/cross-calls2.zsh -------------------------------------------------------------------------------- /test/nested.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested.zsh -------------------------------------------------------------------------------- /test/nested/data/bodies/nested.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/bodies/nested.zsh -------------------------------------------------------------------------------- /test/nested/data/bodies/nested.zsh.comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/bodies/nested.zsh.comments -------------------------------------------------------------------------------- /test/nested/data/call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/call_tree.zsd -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/dummy: -------------------------------------------------------------------------------- 1 | # Dummy function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test1: -------------------------------------------------------------------------------- 1 | # Test1 function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test2: -------------------------------------------------------------------------------- 1 | # Test2 function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test3: -------------------------------------------------------------------------------- 1 | # Test3 function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test4: -------------------------------------------------------------------------------- 1 | # Test4 function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test5: -------------------------------------------------------------------------------- 1 | # Test5 function 2 | -------------------------------------------------------------------------------- /test/nested/data/descriptions/nested.zsh/test6: -------------------------------------------------------------------------------- 1 | # Test6 function 2 | -------------------------------------------------------------------------------- /test/nested/data/extended/nested.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/extended/nested.zsh -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/dummy: -------------------------------------------------------------------------------- 1 | : 2 | -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/functions/nested.zsh/test1 -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test2: -------------------------------------------------------------------------------- 1 | echo "Hello" 2 | test3 3 | -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test3: -------------------------------------------------------------------------------- 1 | echo "Hello"; test4; 2 | -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test4: -------------------------------------------------------------------------------- 1 | echo "Hello"; test5; 2 | -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/functions/nested.zsh/test5 -------------------------------------------------------------------------------- /test/nested/data/functions/nested.zsh/test6: -------------------------------------------------------------------------------- 1 | echo "Hello" 2 | dummy 3 | -------------------------------------------------------------------------------- /test/nested/data/rev_call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/rev_call_tree.zsd -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test1.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/trees/nested.zsh/test1.tree -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test2.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/trees/nested.zsh/test2.tree -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test3.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/trees/nested.zsh/test3.tree -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test4.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/trees/nested.zsh/test4.tree -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test5.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/data/trees/nested.zsh/test5.tree -------------------------------------------------------------------------------- /test/nested/data/trees/nested.zsh/test6.tree: -------------------------------------------------------------------------------- 1 | test6 2 | `-- dummy 3 | 4 | 1 directory, 0 files 5 | -------------------------------------------------------------------------------- /test/nested/nested.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/nested/nested.zsh.adoc -------------------------------------------------------------------------------- /test/real-zsyh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh.zsh -------------------------------------------------------------------------------- /test/real-zsyh/data/autoload/real-zsyh.zsh/add-zsh-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/autoload/real-zsyh.zsh/add-zsh-hook -------------------------------------------------------------------------------- /test/real-zsyh/data/autoload/real-zsyh.zsh/is-at-least: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/autoload/real-zsyh.zsh/is-at-least -------------------------------------------------------------------------------- /test/real-zsyh/data/bodies/real-zsyh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/bodies/real-zsyh.zsh -------------------------------------------------------------------------------- /test/real-zsyh/data/bodies/real-zsyh.zsh.comments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/bodies/real-zsyh.zsh.comments -------------------------------------------------------------------------------- /test/real-zsyh/data/call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/call_tree.zsd -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_add_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_add_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_apply_zle_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_apply_zle_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_bind_widgets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_bind_widgets -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_buffer_modified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_buffer_modified -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_call_widget: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_call_widget -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_cursor_moved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_cursor_moved -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_load_highlighters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_load_highlighters -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/_zsh_highlight_preexec_hook: -------------------------------------------------------------------------------- 1 | # Reset scratch variables when commandline is done. 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/add-zsh-hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/add-zsh-hook -------------------------------------------------------------------------------- /test/real-zsyh/data/descriptions/real-zsyh.zsh/is-at-least: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/descriptions/real-zsyh.zsh/is-at-least -------------------------------------------------------------------------------- /test/real-zsyh/data/extended/real-zsyh.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/extended/real-zsyh.zsh -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/add-zsh-hook: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/autoload: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/eval: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/is-at-least: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/unalias: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/Script_Body_/zmodload: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight/eval: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight/setopt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight/type: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_bind_widgets/eval: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_bind_widgets/setopt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_bind_widgets/zle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_bind_widgets/zmodload: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_call_widget/zle: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_load_highlighters/eval: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_load_highlighters/setopt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/_zsh_highlight_load_highlighters/type: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/add-zsh-hook/autoload: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/features/real-zsyh.zsh/add-zsh-hook/getopts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_add_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_add_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_apply_zle_highlight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_apply_zle_highlight -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_bind_widgets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_bind_widgets -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_buffer_modified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_buffer_modified -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_call_widget: -------------------------------------------------------------------------------- 1 | builtin zle "$@" && 2 | _zsh_highlight 3 | -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_cursor_moved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_cursor_moved -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_load_highlighters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_load_highlighters -------------------------------------------------------------------------------- /test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_preexec_hook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/functions/real-zsyh.zsh/_zsh_highlight_preexec_hook -------------------------------------------------------------------------------- /test/real-zsyh/data/hooks/real-zsyh.zsh/_zsh_highlight_preexec_hook: -------------------------------------------------------------------------------- 1 | preexec 2 | -------------------------------------------------------------------------------- /test/real-zsyh/data/rev_call_tree.zsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/rev_call_tree.zsd -------------------------------------------------------------------------------- /test/real-zsyh/data/trees/real-zsyh.zsh/Script_Body_.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/trees/real-zsyh.zsh/Script_Body_.tree -------------------------------------------------------------------------------- /test/real-zsyh/data/trees/real-zsyh.zsh/_zsh_highlight.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/trees/real-zsyh.zsh/_zsh_highlight.tree -------------------------------------------------------------------------------- /test/real-zsyh/data/trees/real-zsyh.zsh/_zsh_highlight_call_widget.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/data/trees/real-zsyh.zsh/_zsh_highlight_call_widget.tree -------------------------------------------------------------------------------- /test/real-zsyh/real-zsyh.zsh.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/z-shell/zsdoc/HEAD/test/real-zsyh/real-zsyh.zsh.adoc -------------------------------------------------------------------------------- /zsd.config: -------------------------------------------------------------------------------- 1 | zsh_control_bin="zsh" 2 | --------------------------------------------------------------------------------