Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Velissel/059b7bc837055e67ebe151e416a3b2df to your computer and use it in GitHub Desktop.

Select an option

Save Velissel/059b7bc837055e67ebe151e416a3b2df to your computer and use it in GitHub Desktop.
Count total code lines in project using Sublime texteditor
// Go to menue:
// find->find in files
// Switch on reg_ex button
// Find:
^(.*)$
// Where:
c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/*
// Then click on the find button
// Be careful to not click on Replace!!!
// On the bottom line of your search result you'll find something like:
// 21342 matches in 124 files = your lines of code
@Velissel
Copy link
Author

Use this to skip empty lines

^.*\S+.*$

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment