{"id":15636478,"url":"https://github.com/lukaszkorecki/workflowish","last_synced_at":"2025-07-21T06:32:22.109Z","repository":{"id":2621373,"uuid":"3605994","full_name":"lukaszkorecki/workflowish","owner":"lukaszkorecki","description":"A todo \"plugin\" for Vim, inspired by  https://workflowy.com/","archived":false,"fork":false,"pushed_at":"2018-09-23T03:32:57.000Z","size":22,"stargazers_count":125,"open_issues_count":2,"forks_count":13,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-07-19T15:57:17.327Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.vim.org/scripts/script.php?script_id=3959","language":"VimL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lukaszkorecki.png","metadata":{"files":{"readme":"README.markdown","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-03-02T20:47:15.000Z","updated_at":"2025-01-14T12:19:18.000Z","dependencies_parsed_at":"2022-09-07T10:52:12.068Z","dependency_job_id":null,"html_url":"https://github.com/lukaszkorecki/workflowish","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/lukaszkorecki/workflowish","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukaszkorecki%2Fworkflowish","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukaszkorecki%2Fworkflowish/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukaszkorecki%2Fworkflowish/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukaszkorecki%2Fworkflowish/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lukaszkorecki","download_url":"https://codeload.github.com/lukaszkorecki/workflowish/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lukaszkorecki%2Fworkflowish/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266253607,"owners_count":23900052,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-03T11:04:19.581Z","updated_at":"2025-07-21T06:32:22.077Z","avatar_url":"https://github.com/lukaszkorecki.png","language":"VimL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Workflowish\n\n[![Build Status](https://travis-ci.org/flugsio/workflowish.png)](https://travis-ci.org/flugsio/workflowish)\n\nSimple TODO list plugin for Vim, inspired by [Workflowy.com](https://workflowy.com/)\n\n## Screenshot\n\n![vimshot](http://f.cl.ly/items/3A1n1J1e3m1R2u463a1t/Screen%20shot%202012-03-03%20at%2017.45.35.png)\n\n\n## Why?\n\nIt started with a [tweet](https://twitter.com/#!/lukaszkorecki/status/175637968348917760)\n\n![tweetshot](http://f.cl.ly/items/1M21383X350K3k0j1j2O/Screen%20shot%202012-03-03%20at%2017.15.00.png)\n\nHere's what was \"attached\":\n\n    # vi: fen foldmethod=indent :\n    * lol\n      * lol\n        * wat\n        * wut\n    +---  2 lines: * wee ------------------------------------------------------\n        * meh\n      * ouch\n\nThen I started hacking on a little plugin-ish thing and came up with `workflowish`\n\n![folded](http://f.cl.ly/items/2G3d070b2c3u0m302X0j/Screen%20shot%202012-03-03%20at%2017.08.50.png)\n\n# How?\n\nBy defining a simple syntax in Vim and using brilliant [folding capabilities](http://vim.wikia.com/wiki/Folding) *workflowish* can simulate 99% of *Workflowy's* features.\n\n\n### Features?\n\n- searching (Vim is pretty good at it)\n- deleting (as above)\n- folding and a `zoom/focus` mode\n  - `zq` to focus on current item / toggle off\n  - `zp` move focus to parent item\n  - `za` toggles folding. See [Vim wiki: Folding](http://vim.wikia.com/wiki/Folding#Opening_and_closing_folds)\n- notes (just add `\\` in the beginning of the line to start a comment)\n- [vimgrep](http://vimdoc.sourceforge.net/htmldoc/quickfix.html#:vimgrep) for filtering lines\n- todos:\n  - a todo which is not completed is a line which starts with `*`\n  - completed todo starts with a `-`\n- convert from workflowy plain text export\n  - in a `.wofl` file or after `:set ft=workflowish`, run `:call workflowish#convert_from_workflowy()` to convert the whole buffer\n- split windows in vim makes it easy to organize big lists\n\nThanks to the long running tradition, *workflowish* files have `.wofl` extension.\n\n## Installing\n\n[Use Tim Pope's Pathogen](https://github.com/tpope/vim-pathogen).\n\n\u003e New to Pathogen? It's easy. You \"install a plugin\" by putting its files in a directory. i.e. `cd ~/.vim/bundle \u0026\u0026 git clone https://github.com/lukaszkorecki/workflowish` but please, [read the Pathogen README](https://github.com/tpope/vim-pathogen).)\n\n## Optional configuration tweak\n\nThis is not necessary for most users, but if you're a perfectionist you can do it. Add this to your .vimrc to fix [an edge-case with folding single-items](https://github.com/lukaszkorecki/workflowish/issues/5):\n\n```\nautocmd BufWinLeave *.wofl mkview\nautocmd BufWinEnter *.wofl silent loadview\n```\n\n# Legal\n\nMIT  (c) Workflowish Team\n\n## Maintainers\n\n   15 Jimmie Elvenmark\n   10 Łukasz Korecki\n    4 hangtwentyy\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukaszkorecki%2Fworkflowish","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukaszkorecki%2Fworkflowish","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukaszkorecki%2Fworkflowish/lists"}