Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>ReminderNew to Visual Studio Code? Get it now.

Reminder

Young Liang

|
72 installs
| (1) | Free
Just a simple reminder extension for VS Code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Reminder

Visual Studio Marketplace Version

English | 中文

About

remind you about some routines.

If you have a settings.json like

{
  "reminder.routine": [
    {
      "name": "Drink Water!",
      "interval": "15min",
      "description": "Drink 100ml of water"
    }
  ]
}

And for every 15 minutes, you'll have a notification as below

Config

After setting up some simple configurations, you can start using Reminder as you see fit.

  1. reminder.disable

    • Type: boolean
    • Default: false

    Even if you have a Reminder, sometimes you don't want it to bother you. Setting reminder.disable: true will disable Reminder totally.

  2. reminder.routine

    • Type: RoutineInfo[]

      export interface RoutineInfo {
        /**
         * Name for routine, will be shown as the title of infomation
         */
        name: string
      
        /**
         * Interval for routine.
         *
         * If it's a number, then the unit is minutes.
         * And if it's a plain string, the unit is also minutes.
         * Otherwise, the unit must be one of ['ms', 's', 'sec', 'secs', 'm', 'min', 'mins',
         * 'h', 'hr', 'hrs']
         */
        interval: number | string
      
        /**
         * Description of routine, will be shown as the main content of infomation
         */
        description?: string
      
        /**
         * Remind in silent version
         *
         * By default, notification will be shown in a modal.
         * Setting true will notify as a message.
         * @default false
         */
        silent?: boolean
      }
      
    • Default: []

      Routines that Reminder will remind you of what you need to do at specific intervals.

Command

Reminder also provides some simple commands for you, like stop or recover Reminder and so on. Feel free to explore it.

Credits

  • Thanks to flaticon.com for providing this icon.

License

MIT License © 2022-PRESENT Young Liang

  • Contact us
  • Jobs
  • Privacy
  • Terms of use
  • Trademarks
© 2023 Microsoft