.. Copyright (C) 2005 - 2014 Eric Van Dewoestine This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Python Validation ================= When editing a python file eclim will default to validating the file when it is written. Any errors will be added to the current window's location list (:help location-list) and their corresponding line number noted via Vim's sign functionality. If you don't want python files validated when saving them, you can set the g:EclimPythonValidate variable described in the configuration section below. .. _\:Validate_python: Regardless of whether you have validation enabled upon saving or not, the command **:Validate** is available to manual validate the file. Configuration ------------- :doc:`Vim Settings ` .. _g\:EclimPythonValidate: - **g:EclimPythonValidate** (Default 1) - If set to 0, disables python validation when saving the file. .. include:: /vim/validation.rst :start-after: begin-disable :end-before: end-disable - **g:EclimValidateSortResults** (Default: 'occurrence') - If set to 'severity', the validation results will be sorted by severity (errors > warnings > info > etc.)