yaohunzhanyue / collcetion

6 stars 0 forks source link

voldikss/coc-todolist: šŸ• Todolist/task manager extension for (Neo)Vim #53

Open yaohunzhanyue opened 4 years ago

yaohunzhanyue commented 4 years ago

coc-todolist

Todolist/task manager extension for coc.nvim

Install

:CocInstall coc-todolist

Features

Configuration

"todolist.enable": {
  "type": "boolean",
  "default": true,
  "description": "whether enable this extension"
},
"todolist.maxsize": {
  "type": "number",
  "default": 5000,
  "description": "maxsize of todolist"
},
"todolist.dateFormat": {
  "type": "string",
  "default": "YYYY-MM-DD HH:mm",
  "description": "dates format"
},
"todolist.autoUpload": {
  "type": "boolean",
  "default": false,
  "description": "upload your todolist every day"
},
"todolist.monitor": {
  "type": "boolean",
  "default": false,
  "description": "monitor the todolist and remind you at the time"
},
"todolist.promptForReminder": {
  "type": "boolean",
  "default": true,
  "description": "whether to ask users to set a reminder for every new todo item"
},
"todolist.floatwin.background": {
  "type": "string",
  "default": "",
  "description": "notification floating window background(e.g. #000000)"
},
"todolist.floatwin.winblend": {
  "type": "number",
  "default": 0,
  "description": "opacity of notification floating window"
},
"todolist.floatwin.width": {
  "type": "number",
  "default": 30,
  "description": "width of notification floating window"
},
"todolist.notify": {
  "type": "string",
  "default": "floating",
  "description": "how to notify you",
  "enum": [
    "floating",
    "virtual",
    "echo",
    "none"
  ]
}

Commands

CocList

run :CocList todolist to open the todolist

F.A.Q

Q: Where is the todolist data stored?

A: Normally the data is saved in ~/.config/coc/extensions/coc-todolist-data/, but if you set g:coc_extension_root to another location, it will change as well

License

MIT

More Demos