ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

CMake​Format

by jasjuang ALL

Sublime Plugin for cmake_format (CMake Autoformatter)

Details

Installs

  • Total 4K
  • Win 2K
  • Mac 838
  • Linux 2K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 2 1 1 0 0 2 0 0 1 1 0 2 0 0 0 1 1 0 1 1 0 0 0 0 0 0 0 0 1 0 0 1 2 0 1 0 0 0 0 2 0 1 1
Mac 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 1 1 0 0 0 0 0 1 4 1 0 0 1 0 2 1 0 0 1 0 0 0 0 0 0 1 0 1 3 0 0 0 1 0 0 0 0 0 0 1 0 1 1 0 3

Readme

Source
raw.​githubusercontent.​com

Sublime CMake Format

Build Status

What it does

CMake-format is a tool for formatting CMake files. This is a package that allows you to run it easily from within Sublime Text.

Installing

To install cmake_format, do the following:

  1. Install Python and pip.

  2. Install cmake_format by typing the following in a terminal:

[sudo] pip install cmake_format
  • Please install Sublime CMake and this package through Package Control in the usual way.

  • Set the path to the cmake-format binaries. You can do this from within Sublime Text by choosing CMake Format - Set Path from the command palette. Hint: the path should look something like this /usr/local/bin/cmake-format. If cmake-format is in your system path, you shouldn't need to do anything.

Use

  • Default shortcut is ctrl+shift+c. This will apply cmake-format to the selection.
  • It is possible to run the formatter on every save to a file, change settings to "format_on_save": true.
  • To change settings on a per-package basis, add them under CMakeFormat key, example project.sublime-settings:
  • To use style from a file, change settings to "style": "file". Otherwise default style is used.
{
  "folders": [],
  "settings": {
    "CMakeFormat": {
      "style": "file",
      "format_on_save": true,
      "config_file": "/path/to/your/cmake-format-config-file"
    }
  }
}

If You Liked This

  • … And want to contribute, PR's gladly accepted!

Please note that modifications should follow these coding guidelines:

  • Indent is 4 spaces.
  • Code should pass flake8 and pep257 linters.
  • Vertical whitespace helps readability, don’t be afraid to use it.
  • Please use descriptive variable names, no abbreviations unless they are very well known.

Credits

Thanks to cheshirekow for writing cmake format!