mirror of
https://github.com/vim-python/python-syntax.git
synced 2025-12-10 14:41:53 +08:00
Update documentation
This commit is contained in:
151
README.rst
151
README.rst
@@ -3,142 +3,105 @@ Python syntax highlighting script for Vim
|
||||
|
||||
.. contents::
|
||||
|
||||
About
|
||||
-----
|
||||
|
||||
Enhanced version of the original Python syntax highlighting script. Based on
|
||||
``python.vim`` from Vim 6.1 distribution by Neil Schemenauer (nas at python dot
|
||||
ca). Check also `python.vim page on vim.org
|
||||
<http://www.vim.org/scripts/script.php?script_id=790>`_.
|
||||
|
||||
Please report bugs and feature requests to our issue tracker over at:
|
||||
https://github.com/vim-python/python-syntax/issues
|
||||
This is an enhanced version of the original Python syntax highlighting script. Based on
|
||||
``python.vim`` from Vim 6.1 distribution by Neil Schemenauer.
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
Changes from the original ``python.vim`` are:
|
||||
|
||||
- Added support for Python 3 syntax highlighting
|
||||
- Added ``:Python2Syntax`` and ``:Python3Syntax`` commands which allow to
|
||||
switch between Python 2 and Python 3 syntaxes respectively without
|
||||
reloads/restarts
|
||||
- Updated strings highlighting
|
||||
- Added commands ``Python2Syntax`` and ``Python3Syntax`` commands which allow to switch
|
||||
between Python 2 and Python 3 syntaxes respectively without reloads/restarts
|
||||
- Updated string highlighting
|
||||
- Enhanced special symbols highlighting inside strings
|
||||
- Enhanced highlighting of numeric constants
|
||||
- Added optional highlighting for %-formatting inside strings
|
||||
- Added highlighting for magic comments: source code encoding and #!
|
||||
(executable) strings
|
||||
- Added highlighting for magic comments: source code encoding and #! (executable) strings
|
||||
- Added highlighting for new exceptions and builtins
|
||||
- Added highlighting for doctests
|
||||
- Added highlighting for new ``@decorator`` syntax introduced in Python 2.4a2
|
||||
- Added highlighting for the following errors:
|
||||
- Invalid symbols in source file
|
||||
- Mixing spaces and tabs
|
||||
- Invalid numeric constants
|
||||
- Invalid %-formatting inside strings
|
||||
- Invalid variable names
|
||||
- Trailing spaces (triggered by the ``python_highlight_space_errors`` option)
|
||||
|
||||
- invalid symbols in source file
|
||||
- mixing spaces and tabs
|
||||
- invalid numeric constants
|
||||
- invalid %-formatting inside strings
|
||||
- invalid variable names
|
||||
- trailing spaces (triggered by the ``python_highlight_space_errors`` option)
|
||||
|
||||
Some of these features was later backported into the original ``python.vim``.
|
||||
|
||||
Folding is done by the plugin `SimpylFold <https://github.com/tmhedberg/SimpylFold>`_
|
||||
Folding is done by the plugin `SimpylFold <https://github.com/tmhedberg/SimpylFold>`_.
|
||||
|
||||
How to install
|
||||
--------------
|
||||
|
||||
The easiest installation method is to place `syntax/python.vim
|
||||
<https://github.com/vim-python/python-syntax/blob/master/syntax/python.vim>`_ script
|
||||
into your ``~/.vim/syntax/`` directory.
|
||||
Use one of the following plugin managers:
|
||||
|
||||
You can also use `Pathogen <https://github.com/tpope/vim-pathogen>`_ or `Vundle
|
||||
<https://github.com/gmarik/vundle>`_ plugin managers in which case you can
|
||||
install the whole `repository
|
||||
<https://github.com/vim-python/python-syntax>`_ into the corresponding plugins
|
||||
directory.
|
||||
- `dein <https://github.com/Shougo/dein.vim>`_
|
||||
- `vim-plug <https://github.com/junegunn/vim-plug>`_
|
||||
- `vundle <https://github.com/VundleVim/Vundle.vim>`_
|
||||
- `pathogen <https://github.com/tpope/vim-pathogen>`_
|
||||
|
||||
Or you can just manually place `syntax/python.vim
|
||||
<https://github.com/vim-python/python-syntax/blob/master/syntax/python.vim>`_
|
||||
into ``~/.config/nvim/syntax/`` or ``~/.vim/syntax/``.
|
||||
|
||||
Script options
|
||||
--------------
|
||||
|
||||
There are two commands to enable or disable an option:
|
||||
Enable option with::
|
||||
|
||||
``:let OPTION_NAME = 1``
|
||||
Enable option
|
||||
``:let OPTION_NAME = 0``
|
||||
Disable option
|
||||
let OPTION_NAME = 1
|
||||
|
||||
Disable option with::
|
||||
|
||||
let OPTION_NAME = 0
|
||||
|
||||
For example to enable all syntax highlighting features you can place the
|
||||
following command in your ``~/.vimrc`` script::
|
||||
following command in your ``~/.config/nvim/init.vim`` or ``~/.vimrc`` script::
|
||||
|
||||
let python_highlight_all = 1
|
||||
let g:python_highlight_all = 1
|
||||
|
||||
Option and commands to select Python version
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Options and commands to select Python version
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
``python_version_2``
|
||||
``g:python_version_2`` or ``b:python_version_2``
|
||||
Enable highlighting for Python 2 (Python 3 highlighting is enabled by
|
||||
default). Also can be set as a local to buffer ``b:python_version_2``
|
||||
variable.
|
||||
default).
|
||||
|
||||
The following local to buffer commands can be used to switch between two
|
||||
highlighting modes:
|
||||
The following commands can be used to switch between modes:
|
||||
|
||||
``:Python2Syntax``
|
||||
Switch to Python 2 highlighting mode
|
||||
``:Python3Syntax``
|
||||
Switch to Python 3 highlighting mode
|
||||
``Python2Syntax``
|
||||
Switch to Python 2
|
||||
``Python3Syntax``
|
||||
Switch to Python 3
|
||||
|
||||
Options used by the script
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
Other options
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
``python_highlight_builtins``
|
||||
``g:python_highlight_builtins``
|
||||
Highlight builtin functions and objects
|
||||
``python_highlight_builtin_objs``
|
||||
``g:python_highlight_builtin_objs``
|
||||
Highlight builtin objects only
|
||||
``python_highlight_builtin_funcs``
|
||||
``g:python_highlight_builtin_funcs``
|
||||
Highlight builtin functions only
|
||||
``python_highlight_exceptions``
|
||||
``g:python_highlight_exceptions``
|
||||
Highlight standard exceptions
|
||||
``python_highlight_string_formatting``
|
||||
``g:python_highlight_string_formatting``
|
||||
Highlight ``%`` string formatting
|
||||
``python_highlight_string_format``
|
||||
``g:python_highlight_string_format``
|
||||
Highlight syntax of ``str.format`` syntax
|
||||
``python_highlight_string_templates``
|
||||
``g:python_highlight_string_templates``
|
||||
Highlight syntax of ``string.Template``
|
||||
``python_highlight_indent_errors``
|
||||
``g:python_highlight_indent_errors``
|
||||
Highlight indentation errors
|
||||
``python_highlight_space_errors``
|
||||
``g:python_highlight_space_errors``
|
||||
Highlight trailing spaces
|
||||
``python_highlight_doctests``
|
||||
``g:python_highlight_doctests``
|
||||
Highlight doc-tests
|
||||
``python_print_as_function``
|
||||
``g:python_print_as_function``
|
||||
Highlight ``print`` statement as function for Python 2
|
||||
``python_highlight_file_headers_as_comments``
|
||||
``g:python_highlight_file_headers_as_comments``
|
||||
Highlight shebang and coding headers as comments
|
||||
``python_highlight_all``
|
||||
Enable all the options above. *NOTE: This option don't override any
|
||||
previously set options*
|
||||
``python_slow_sync``
|
||||
Can be set to 0 for slow machines
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
List of the contributors in alphabetical order:
|
||||
|
||||
- `Andrea Riciputi <https://github.com/mrrech>`_
|
||||
- Anton Butanaev
|
||||
- `Antony Lee <https://github.com/anntzer>`_
|
||||
- Caleb Adamantine
|
||||
- `David Briscoe <https://github.com/idbrii>`_
|
||||
- `Elizabeth Myers <https://github.com/Elizafox>`_
|
||||
- `Ihor Gorobets <https://github.com/iho>`_
|
||||
- `Jeroen Ruigrok van der Werven <https://github.com/ashemedai>`_
|
||||
- `John Eikenberry <https://github.com/eikenb>`_
|
||||
- `Joongi Kim <https://github.com/achimnol>`_
|
||||
- `Marc Weber <https://github.com/MarcWeber>`_
|
||||
- `Pedro Algarvio <https://github.com/s0undt3ch>`_
|
||||
- `Victor Salgado <https://github.com/mcsalgado>`_
|
||||
- `Will Gray <https://github.com/graywh>`_
|
||||
- `Yuri Habrusiev <https://github.com/yuriihabrusiev>`_
|
||||
``g:python_highlight_all``
|
||||
Enable all the options above - *NOTE: Doesn't override any previously set options*
|
||||
``g:python_slow_sync``
|
||||
Disable for slow machines
|
||||
|
||||
@@ -1,65 +1,63 @@
|
||||
PYTHON *python.vim* *ft-python-syntax*
|
||||
*python-syntax* *ft-python-syntax* *python.vim*
|
||||
|
||||
There are two commands to enable or disable an option for python.vim
|
||||
===============================================================================
|
||||
Configuration *python-syntax-configuration*
|
||||
|
||||
Enable option: >
|
||||
:let option_name = 1
|
||||
Enable option with: >
|
||||
|
||||
let OPTION_NAME = 1
|
||||
<
|
||||
Disable option: >
|
||||
:let option_name = 0
|
||||
Disable option with: >
|
||||
|
||||
let OPTION_NAME = 0
|
||||
<
|
||||
For example to enable all syntax highlighting features you can place the
|
||||
following command in your `~/.vimrc` script: >
|
||||
following command in your `~/.config/nvim/init.vim` or `~/.vimrc` script: >
|
||||
|
||||
let python_highlight_all = 1
|
||||
let g:python_highlight_all = 1
|
||||
<
|
||||
Option and commands to select Python version: >
|
||||
-------------------------------------------------------------------------------
|
||||
Options and commands to select Python version *python-syntax-version*
|
||||
|
||||
:let python_version_2 = 1
|
||||
<
|
||||
`g:python_version_2` or `b:python_version_2`
|
||||
Enable highlighting for Python 2 (Python 3 highlighting is enabled by
|
||||
default). Also can be set as a local to buffer `b:python_version_2`
|
||||
variable.
|
||||
default).
|
||||
|
||||
The following local to buffer commands can be used to switch between two
|
||||
highlighting modes:
|
||||
The following commands can be used to switch between modes:
|
||||
|
||||
Switch to Python 2 highlighting mode >
|
||||
:Python2Syntax
|
||||
<
|
||||
Switch to Python 3 highlighting mode >
|
||||
:Python3Syntax
|
||||
<
|
||||
Options used by the script
|
||||
`Python2Syntax`
|
||||
Switch to Python 2
|
||||
`Python3Syntax`
|
||||
Switch to Python 3
|
||||
|
||||
Highlight builtin functions and objects >
|
||||
:let python_highlight_builtins = 1
|
||||
< Highlight builtin objects only >
|
||||
:let python_highlight_builtin_objs = 1
|
||||
< Highlight builtin functions only >
|
||||
:let python_highlight_builtin_funcs = 1
|
||||
< Highlight standard exceptions >
|
||||
:let python_highlight_exceptions = 1
|
||||
< Highlight `%` string formatting >
|
||||
:let python_highlight_string_formatting = 1
|
||||
< Highlight syntax of `str.format` syntax >
|
||||
:let python_highlight_string_format = 1
|
||||
< Highlight syntax of `string.Template` >
|
||||
:let python_highlight_string_templates = 1
|
||||
< Highlight indentation errors >
|
||||
:let python_highlight_indent_errors = 1
|
||||
< Highlight trailing spaces >
|
||||
:let python_highlight_space_errors = 1
|
||||
< Highlight doc-tests >
|
||||
:let python_highlight_doctests = 1
|
||||
< Highlight `print` statement as function for Python 2 >
|
||||
:let python_print_as_function = 1
|
||||
< Highlight shebang and coding headers as comments >
|
||||
:let python_highlight_file_headers_as_comments = 1
|
||||
< Enable all the options above. NOTE: This option don't override any
|
||||
previously set options >
|
||||
:let python_highlight_all = 1
|
||||
< Can be set to 0 for slow machines >
|
||||
:let python_slow_sync = 1
|
||||
<
|
||||
vim:tw=78:sw=4:ts=8:ft=help:norl:
|
||||
-------------------------------------------------------------------------------
|
||||
Options *python-syntax-options*
|
||||
|
||||
`g:python_highlight_builtins`
|
||||
Highlight builtin functions and objects
|
||||
`g:python_highlight_builtin_objs`
|
||||
Highlight builtin objects only
|
||||
`g:python_highlight_builtin_funcs`
|
||||
Highlight builtin functions only
|
||||
`g:python_highlight_exceptions`
|
||||
Highlight standard exceptions
|
||||
`g:python_highlight_string_formatting`
|
||||
Highlight `%` string formatting
|
||||
`g:python_highlight_string_format`
|
||||
Highlight syntax of `str.format` syntax
|
||||
`g:python_highlight_string_templates`
|
||||
Highlight syntax of `string.Template`
|
||||
`g:python_highlight_indent_errors`
|
||||
Highlight indentation errors
|
||||
`g:python_highlight_space_errors`
|
||||
Highlight trailing spaces
|
||||
`g:python_highlight_doctests`
|
||||
Highlight doc-tests
|
||||
`g:python_print_as_function`
|
||||
Highlight `print` statement as function for Python 2
|
||||
`g:python_highlight_file_headers_as_comments`
|
||||
Highlight shebang and coding headers as comments
|
||||
`g:python_highlight_all`
|
||||
Enable all the options above - NOTE: Doesn't override any previously set options
|
||||
`g:python_slow_sync`
|
||||
Disable for slow machines
|
||||
|
||||
Reference in New Issue
Block a user