cp2k-syntax
CP2K input file syntax highlighting for SublimeText 3
Details
Installs
- Total 439
- Win 260
- Mac 98
- Linux 81
Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
cp2k-syntax
Comprehensive syntax highlighting for CP2K input files in Sublime Text 3.
CP2K is a freely available program package to perform atomistic simulations of solid state, liquid, molecular, periodic, material, crystal, and biological systems.
Color scheme in the example figure is base16-railscasts
Features
- Syntax highlighting based on the
.sublime-syntax
format requiring a recent version of Sublime Text 3 (minimum build number 3084) - Standalone python linter which parses the input file and compares it to the XML input description of CP2K
- Snippets for commonly used control sequences
Installation
The simplest way to install this package is via Package Control. Alternatively, you can clone this repository.
Installation via Package Control
- Make sure you have a working python interpreter (supported versions
=>2.5
and3.x
). - If not already installed, install Package Control for Sublime Text 3.
- Install SublimeLinter.
- Install this package via Package Control
- Open the Command Palette (
ctrl+shift+p
on Linux/Windows) - Type
install
and selectPackage Control: Install Package
- Type
cp2k
and selectcp2k-syntax
- Open the Command Palette (
Installation via Git
- Make sure you have all the prerequisites listed above.
- Open a terminal and create a working directory for this repository.
- Move to the directory you created in the previous step and clone the repository
git clone https://github.com/nholmber/cp2k-syntax
- Create a folder for this package in your local Sublime Text
Packages/User
directory. - Recursively copy (
cp -r *
) all files related to this package into the folder you created in the previous step.
Usage and configuration
By default, files ending in .inp
, .inc
, and .restart
are recognized as CP2K input files and syntax highlighting should be applied to these files automatically. If for some reason the automatic detection does not work or you wish to enable highlighting for a different file extension, you need to take the following steps
- Open the file for which you wish to enable syntax highlighting.
- Navigate to
View -> Syntax -> Open all with current extension as ... -> CP2K Input
The output of the linter is parsed and displayed on screen by the SublimeLinter
package. To customize the linting view and other settings, please take a look at the documentation of SublimeLinter
.
The linter recognizes allowed keyword names by parsing the XML input description of CP2K. A sample XML file sample-xml/cp2k_input.xml
is provided for CP2K version 3.0
and the linter by default uses this file. If you are using a different version of CP2K, you can replace the default XML file with your own file by following these steps
- Create an XML input description for your version of CP2K.
- Place the generated
cp2k_input.xml
in any directory. - Configure the linter to use the generated file.
- Open the Command Palette (
ctrl+shift+p
on Linux/Windows) - Type
preferences sub
and selectPreferences: SublimeLinter Settings -- User
- Scroll down the settings until you find
cp2klint
settings (underlinters
). - Replace the default
manualfile
with your own XML file including a full path and filename for the file.
- Open the Command Palette (
Contributing
If you find bug in the linter or syntax highlighting, please open a new issue in the issue tracker and include a minimal input file for reproducing the bug. You can also contribute directly by forking the project and posting a pull request. Check the issue tracker for known issues and nice-to-have unimplemented features.