Shows clock in status bar in Visual Studio Code, even in full screen mode.
When the extension is installed, a clock will be displayed on the lower right hand corner.
The date time format can be changed via preferences
- File > Preferences > User Settings
- Adds the following line
"clock.dateFormat": "hh:MM TT"
- Date format can be found at https://github.com/felixge/node-dateformat
To insert the clock into the selection, you can either click on the clock on status bar, or use the Command Palette.
- Bring up Command Palette (
F1
, orCtrl+Shift+P
on Windows and Linux, orShift+CMD+P
on OSX) - Type or select "Clock: Insert date and time"
You can also modify keyboard shortcut with JSON below.
{
"key": "ctrl+shift+f5",
"command": "clock.insertDateTime",
"when": "editorTextFocus"
}
- 0.0.1 (2016-02-24): First public release
Love this extension? Star us!
Want to make this extension even more awesome? Send us your wish.
Hate how it is working? File an issue to us.