├── .dir-locals.el ├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── examples.org ├── images ├── custom-command.png ├── org-sidebar-ql.png ├── screenshot.png ├── sidebar-with-tree.png ├── tree-and-item-sidebars.png ├── tree.gif └── tree2.gif ├── makem.sh ├── notes.org └── org-sidebar.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .sandbox/ 2 | *.elc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/README.org -------------------------------------------------------------------------------- /examples.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/examples.org -------------------------------------------------------------------------------- /images/custom-command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/custom-command.png -------------------------------------------------------------------------------- /images/org-sidebar-ql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/org-sidebar-ql.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /images/sidebar-with-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/sidebar-with-tree.png -------------------------------------------------------------------------------- /images/tree-and-item-sidebars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/tree-and-item-sidebars.png -------------------------------------------------------------------------------- /images/tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/tree.gif -------------------------------------------------------------------------------- /images/tree2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/images/tree2.gif -------------------------------------------------------------------------------- /makem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/makem.sh -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/notes.org -------------------------------------------------------------------------------- /org-sidebar.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphapapa/org-sidebar/HEAD/org-sidebar.el --------------------------------------------------------------------------------