Code Time is an open source plugin for automatic programming metrics and time tracking in Visual Studio Code. Track your productivity, protect valuable code time, and stay in flow.
Running and debugging Java. Visual Studio Code allows you to debug Java applications through the Debugger for Java extension. It's a lightweight Java debugger based on Java Debug Server, which extends the Language Support for Java by Red Hat. Remote SSH with Visual Studio Code. July 25, 2019 by Sana Ajani, @sanaajani. Remote - SSH: Easy, smooth, and (like) local. In case you missed it, Visual Studio Code recently released the Remote Development extensions. The Remote extensions allow you to develop against a container, a remote machine or virtual machine (VM), or the Windows. Welcome to the March 2020 release of Visual Studio Code. There are a number of updates in this version that we hope you will like, some of the key highlights include: Accessibility improvements - Easier diff view navigation, clearer role designations for UI controls. Timeline view - See time-series events like Git commit history from within VS.
Join our community of over 150,000 developers who use Code Time to reclaim time for focused, uninterrupted coding.
Getting Started
Create an account to keep track of your coding data and unlock access to advanced data visualizations in the Code Time dashboard and web app. You can customize your profile, such as your work hours and office type, for advanced time tracking. You can also connect Outlook or Google Calendar to visualize your code time vs. meetings in a single calendar.
Registering an account also lets you connect multiple code editors on multiple devices using the same email account. Your code time data will sync automatically across your devices.
Open Code Time in the sidebar and follow the Getting Started prompts to create a new account, or click Log in to sign into an existing account.
Protect Code Time
Flow Mode makes it easy to eliminate distractions, mute notifications, and stay focused when you are in flow.
You can quickly toggle Zen mode or enter full screen. If you connect a Slack workspace, you can pause notifications, update your profile status, and set your presence to away. You can customize Flow Mode by clicking the gear icon at the the top of the Code Time sidebar.
Click Enter Flow Mode to toggle your flow automations. Once you are in Flow Mode, click Exit Flow Mode to resume receiving notifications and reset your Slack status.
Track Development Metrics
Your coding stats can help you understand how you are improving over time.
Your status bar shows you in real-time how many hours and minutes you code each day. A rocket will appear if your active code time exceeds your daily average on this day of the week.
To see an overview of your coding activity and project metrics, open the Code Time panel by clicking on the Code Time icon in your sidebar. Click Dashboard to open your personalized Code Time dashboard in a new editor tab. Your dashboard summarizes your coding data—such as your code time by project, lines of code, and keystrokes—today, yesterday, last week, and over the last 90 days. Click Project summary to see a breakdown of your stats by project.
Your time in editor is the total time you have spent in your editor today. Your active code time is the time you spend actively writing and editing code in your editor or IDE. It captures periods of intense focus and flow. Each metric shows how you compare today to your personal averages. Each average is calculated by day of week over the last 90 days (e.g. a Friday average is an average of all previous Fridays).
Explore Data Visualizations
Click More data at software.com in the Code Time sidebar or visit app.software.com to see more advanced data visualizations. You will need to create a free Software account to use the web app. In the Code Time dashboard, you will be able to track:
Active code time. Visualize your daily active code time. See productivity trends compared to weekly and monthly averages. See how you stack up against the Software community of over 100,000 developers.
Top projects. See how much time you spend per project per week. Get a breakdown of your top projects right in your dashboard.
Work-life balance. Connect your Google or Outlook Calendar to visualize meeting time versus code time. See how much coding happens during work hours versus nights and weekends so you can find ways to improve your work-life balance.
Invite Your Team
With Teams, you can defend code time, see the impact of meetings, and improve work-life balance across your entire team.
Visual Studio Code Size
Remember, your data is for you, no one else. Your team data is for your team. When you create a team, you will only see aggregated and anonymized summary data at the team level—available to everyone on that team. In addition, to protect individual privacy, the minimum team size is five members.
To create a team, open the Code Time sidebar and select Create a team at the bottom of the panel. You can also visit the team dashboard in the web app to get started. It's free to create a team, but you can upgrade to a premium plan to unlock additional features.
It’s Safe, Secure, and Free
We never access your code: We do not process, send, or store your proprietary code. We only provide metrics about programming, and we make it easy to see the data we collect.
Your data is private: We will never share your individually identifiable data with your boss. When you join a team, we only show aggregated and anonymized data. We encourage you to read Data Privacy Matters, an overview of the steps we take to protect your privacy and security.
Free for you, forever: We provide 90 days of data history for free, forever. We provide premium plans for advanced features and historical data access.
Code Time also collects basic usage metrics to help us make informed decisions about our roadmap.
Join the Community
Enjoying Code Time? Let us know how it’s going by tweeting or following us at @software_hq.
We're also the creators behind Music Time for VS Code, an extension that helps you find your most productive songs for coding. You can learn more here.
Have any questions? Create an issue in the Code Time project on GitHub or send us an email at support@software.com and we’ll get back to you as soon as we can.
Tailwind CSS IntelliSense enhances the Tailwind development experience by providing Visual Studio Code users with advanced features such as autocomplete, syntax highlighting, and linting.
Installation
In order for the extension to activate you must have tailwindcss
installed and a Tailwind config file named tailwind.config.js
or tailwind.js
in your workspace.
Features
Autocomplete
Intelligent suggestions for class names, as well as CSS functions and directives.
Linting
Highlights errors and potential bugs in both your CSS and your markup.
Hover Preview
See the complete CSS for a Tailwind class name by hovering over it.
CSS Syntax Highlighting
Provides syntax definitions so that Tailwind features are highlighted correctly.
Recommended VS Code Settings
VS Code has built-in CSS validation which may display errors when using Tailwind-specific syntax, such as @apply
. You can disable this with the css.validate
setting:
By default VS Code will not trigger completions when editing 'string' content, for example within JSX attribute values. Updating the editor.quickSuggestions
setting may improve your experience, particularly when editing Tailwind classes within JSX:
Extension Settings
tailwindCSS.includeLanguages
This setting allows you to add additional language support. The key of each entry is the new language ID and the value is any one of the extensions built-in languages, depending on how you want the new language to be treated (e.g. html
, css
, or javascript
):
tailwindCSS.emmetCompletions
Enable completions when using Emmet-style syntax, for example div.bg-red-500.uppercase
. Default: false
tailwindCSS.colorDecorators
Controls whether the editor should render inline color decorators for Tailwind CSS classes and helper functions.
inherit
: Color decorators are rendered ifeditor.colorDecorators
is enabled.on
: Color decorators are rendered.off
: Color decorators are not rendered.
tailwindCSS.showPixelEquivalents
Show px
equivalents for rem
CSS values in completions and hovers. Default: true
tailwindCSS.rootFontSize
Root font size in pixels. Used to convert rem
CSS values to their px
equivalents. See tailwindCSS.showPixelEquivalents
. Default: 16
tailwindCSS.validate
Enable linting. Rules can be configured individually using the tailwindcss.lint
settings:
ignore
: disable lint rule entirelywarning
: rule violations will be considered 'warnings,' typically represented by a yellow underlineerror
: rule violations will be considered 'errors,' typically represented by a red underline
tailwindCSS.lint.invalidScreen
Unknown screen name used with the @screen
directive. Default: error
tailwindCSS.lint.invalidVariant
Unknown variant name used with the @variants
directive. Default: error
tailwindCSS.lint.invalidTailwindDirective
Unknown value used with the @tailwind
directive. Default: error
tailwindCSS.lint.invalidApply
Unsupported use of the @apply
directive. Default: error
Change Visual Studio Code Font Size
tailwindCSS.lint.invalidConfigPath
Unknown or invalid path used with the theme
helper. Default: error
tailwindCSS.lint.cssConflict
Class names on the same HTML element which apply the same CSS property or properties. Default: warning
Visual Studio Code Window Size
Troubleshooting
Visual Studio Code Change Font Size
If you’re having issues getting the IntelliSense features to activate, there are a few things you can check:
Visual Studio Code Tab Size
- Ensure that you have a Tailwind config file in your workspace and that this is named
tailwind.config.js
ortailwind.js
. Check out the Tailwind documentation for details on creating a config file. - Ensure that the
tailwindcss
module is installed in your workspace, vianpm
,yarn
, orpnpm
. Tailwind CSS IntelliSense does not currently support Yarn Plug'n'Play. - If you installed
tailwindcss
or created your config file while your project was already open in Visual Studio Code you may need to reload the editor. You can either restart VS Code entirely, or use theDeveloper: Reload Window
command which can be found in the command palette. - Make sure your VS Code settings aren’t causing your Tailwind config file to be excluded from search, for example via the
search.exclude
setting.