CMakeFormat
Sublime Plugin for cmake_format (CMake Autoformatter)
Details
Installs
- Total 5K
- Win 2K
- Mac 874
- Linux 2K
Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 |
Mac | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Linux | 1 | 1 | 0 | 0 | 1 | 1 | 2 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 2 | 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!