CMakeFormat
Sublime Plugin for cmake_format (CMake Autoformatter)
Details
Installs
- Total 4K
- Win 2K
- Mac 860
- Linux 2K
Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 1 | 0 | 0 | 2 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
Mac | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 |
Linux | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 3 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Sublime CMake Format
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
- This plugin is dependent on cmake_format and Sublime CMake plugin.
To install cmake_format
, do the following:
[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"
. Otherwisedefault
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!