*pymode.txt* For Vim Version 8.0 Last change: 2019 March 08____ _ _ ____ _ _ _____ _ _ __ __ _____ ____ ____ ~( _ \( \/ )(_ _)( )_( )( _ )( \( )___( \/ )( _ )( _ \( ___) ~)___/ \ / )( ) _ ( )(_)( ) ((___)) ( )(_)( )(_) ))__) ~(__) (__) (__) (_) (_)(_____)(_)\_) (_/\/\_)(_____)(____/(____) ~Version: 0.13.0===============================================================================CONTENTS *pymode-contents*1. Intro...........................................................|pymode-intro|2. Common functionality...........................................|pymode-common|2.1 Python version....................................|pymode-python-version|2.2 Python indentation........................................|pymode-indent|2.3 Python folding...........................................|pymode-folding|2.4 Vim motion................................................|pymode-motion|2.5 Show documentation.................................|pymode-documentation|2.6 Support virtualenv....................................|pymode-virtualenv|2.7 Run code.....................................................|pymode-run|2.8 Breakpoints..........................................|pymode-breakpoints|3. Code checking....................................................|pymode-lint|3.1 Code checkers options...............................|pymode-lint-options|4. Rope support.....................................................|pymode-rope|4.1 Code completion.......................................|pymode-completion|4.2 Find definition......................................|pymode-rope-findit|4.3 Refactoring.....................................|pymode-rope-refactoring|4.4 Undo/Redo changes......................................|pymode-rope-undo|5. Syntax.........................................................|pymode-syntax|6. FAQ...............................................................|pymode-faq|7. Development...............................................|pymode-development|8. Credits.......................................................|pymode-credits|9. License.......................................................|pymode-license|===============================================================================1. Intro ~*pymode-intro*XXX IMPORTANT: As of 2017年11月18日 python-mode is going through a major redesign.Thus some of its functionality may not work as expected. Please be patient anddo report bugs or inconsistencies in its documentation. But remember to lookfor already openned bug reports for the same issue before creating a new one.Python-mode is a vim plugin that allows you to use the pylint, rope, and pydoclibraries in vim to provide features like python code bug checking,refactoring, and some other useful things.This plugin allows you to create python code in vim very easily. There is noneed to install the pylint or rope libraries on your system.Python-mode contains all you need to develop python applications in Vim.Features: *pymode-features*- Support Python version 2.6+ and 3.2+- Syntax highlighting- Virtualenv support- Run python code (``<leader>r``)- Add/remove breakpoints (``<leader>b``)- Improved Python indentation- Python folding- Python motions and operators (``]]``, ``3[[``, ``]]M``, ``vaC``, ``viM``,``daC``, ``ciM``, ...)- Code checking (pylint_, pyflakes_, pylama_, ...) that can be runsimultaneously (``:PymodeLint``)- Autofix PEP8 errors (``:PymodeLintAuto``)- Search in python documentation (``K``)- Code refactoring <rope refactoring library> (rope_)- Strong code completion (rope_)- Go to definition (``<C-c>g`` for `:RopeGotoDefinition`)- And more, more ...===============================================================================2. Common functionality ~*pymode-common*This script provides the following options that can customizes the behavior ofpython-mode. These options should be set in your |vimrc|.Find below the default values:Turn on the whole plugin. *'g:pymode'*>let g:pymode = 1Turn off plugin's warnings. *'g:pymode_warnings'*>let g:pymode_warnings = 1Add paths to `sys.path` *'g:pymode_paths'*Value is list of path's strings.>let g:pymode_paths = []Trim unused white spaces on save. *'g:pymode_trim_whitespaces'*>let g:pymode_trim_whitespaces = 1Setup default python options. *'g:pymode_options'*>let g:pymode_options = 1If this option is set to 1, pymode will enable the following options forpython buffers: >setlocal complete+=tsetlocal formatoptions-=tif v:version > 702 && !&relativenumbersetlocal numberendifsetlocal nowrapsetlocal textwidth=79setlocal commentstring=#%ssetlocal define=^\s*\\(def\\\\|class\\)Setup max line length *'g:pymode_options_max_line_length'*>let g:pymode_options_max_line_length = 79Enable colorcolumn display at max_line_length. *'g:pymode_options_colorcolumn'*>let g:pymode_options_colorcolumn = 1Setup pymode |quickfix| window.*'g:pymode_quickfix_maxheight'* *'g:pymode_quickfix_minheight'*>let g:pymode_quickfix_minheight = 3let g:pymode_quickfix_maxheight = 6Set pymode |preview| window height. *'g:pymode_preview_height'*Preview window is used to show documentation and ouput from |pymode-run|.>let g:pymode_preview_height = &previewheightSet where pymode |preview| window will appear. *'g:pymode_preview_position'*>let g:pymode_preview_position = 'botright'Value is command which can influcece where new window created by `:new` commandwill appear, eg. `:botright`.-------------------------------------------------------------------------------2.1. Python version ~*pymode-python-version*By default pymode will attempt to use Python 3, if available. However, you canalso disable all Python features of pymode.*'g:pymode_python'*>let g:pymode_python = 'python3'Values are `python3`, `disable`. If value set to `disable` mostpython-features of **pymode** will be disabled.Set value to `python3` if you are working with python3 projects. You could use|exrc|-------------------------------------------------------------------------------2.2 Python indentation ~*pymode-indent*Pymode supports PEP8-compatible python indent.Enable pymode indentation *'g:pymode_indent'*>let g:pymode_indent = 1-------------------------------------------------------------------------------2.3 Python folding ~*pymode-folding*Enable pymode folding *'g:pymode_folding'*>let g:pymode_folding = 0Currently folding is considered experimental. There are several issues withits implementation.-------------------------------------------------------------------------------2.4 Vim motion ~*pymode-motion*Support Vim motion (See |operator|) for python objects (such as functions,class and methods).`C` — means class`M` — means method or function*pymode-motion-keys*==== ============================Key Command==== ============================[[ Jump to previous class or function (normal, visual, operator modes)]] Jump to next class or function (normal, visual, operator modes)[M Jump to previous class or method (normal, visual, operator modes)]M Jump to next class or method (normal, visual, operator modes)aC Select a class. Ex: vaC, daC, yaC, caC (normal, operator modes)iC Select inner class. Ex: viC, diC, yiC, ciC (normal, operator modes)aM Select a function or method. Ex: vaM, daM, yaM, caM (normal, operator modes)iM Select inner function or method. Ex: viM, diM, yiM, ciM (normal, operator modes)==== ============================Enable pymode-motion *'g:pymode_motion'*>let g:pymode_motion = 1-------------------------------------------------------------------------------2.5 Show documentation ~*pymode-documentation*Pymode could show documentation for current word by `pydoc`.Commands:*:PymodeDoc* <args> — show documentationTurns on the documentation script *'g:pymode_doc'*>let g:pymode_doc = 1Bind keys to show documentation for current word (selection)*'g:pymode_doc_bind'*>let g:pymode_doc_bind = 'K'-------------------------------------------------------------------------------2.6 Support virtualenv ~*pymode-virtualenv*Commands:*:PymodeVirtualenv* <path> -- Activate virtualenv (path can be absolute orrelative to current working directory)Enable automatic virtualenv detection *'g:pymode_virtualenv'*>let g:pymode_virtualenv = 1Set path to virtualenv manually *'g:pymode_virtualenv_path'*>let g:pymode_virtualenv_path = $VIRTUAL_ENV-------------------------------------------------------------------------------2.7 Run code ~*pymode-run*Commands:*:PymodeRun* -- Run current buffer or selectionTurn on the run code script *'g:pymode_run'*>let g:pymode_run = 1Binds keys to run python code *'g:pymode_run_bind'*>let g:pymode_run_bind = '<leader>r'-------------------------------------------------------------------------------2.8 Breakpoints ~*pymode-breakpoints*Pymode automatically detects available debugger (like pdb, ipdb, pudb) and usercan set/unset breakpoint with one key and without code checking and etc.Enable functionality *'g:pymode_breakpoint'*>let g:pymode_breakpoint = 1Bind keys>let g:pymode_breakpoint_bind = '<leader>b'Manually set breakpoint command (leave empty for automatic detection)>let g:pymode_breakpoint_cmd = ''===============================================================================3. Code checking ~*pymode-lint*Pymode supports `pylint`, `pep257`, `pep8`, `pyflakes`, `mccabe` codecheckers. You could run several similar checkers.Pymode uses Pylama library for code checking. Many options like skipfiles, errors and etc could be defined in `pylama.ini` file or modelines.Check Pylama documentation for details.Pylint options (ex. disable messages) may be defined in `$HOME/pylint.rc`See pylint documentation.Commands:*:PymodeLint* -- Check code in current buffer*:PymodeLintToggle* -- Toggle code checking*:PymodeLintAuto* -- Fix PEP8 errors in current buffer automaticallyTurn on code checking *'g:pymode_lint'*>let g:pymode_lint = 1Check code on every save (if file has been modified) *'g:pymode_lint_on_write'*>let g:pymode_lint_on_write = 1Check code on every save (every) *'g:pymode_lint_unmodified'*>let g:pymode_lint_unmodified = 0Check code when editing (on the fly) *'g:pymode_lint_on_fly'*>let g:pymode_lint_on_fly = 0Show error message if cursor placed at the error line *'g:pymode_lint_message'*>let g:pymode_lint_message = 1Default code checkers (you could set several) *'g:pymode_lint_checkers'*>let g:pymode_lint_checkers = ['pyflakes', 'pep8', 'mccabe']Values may be chosen from: `pylint`, `pep8`, `mccabe`, `pep257`, `pyflakes`.Skip errors and warnings *'g:pymode_lint_ignore'*E.g. ["W", "E2"] (Skip all Warnings and the Errors starting with E2) etc.>let g:pymode_lint_ignore = ["E501", "W",]Select some error or warnings. *'g:pymode_lint_select'*By example you disable all warnings starting from 'W', but want to see warning'W0011' and warning 'W430'>let g:pymode_lint_select = ["E501", "W0011", "W430"]Sort errors by relevance *'g:pymode_lint_sort'*If not empty, errors will be sort by defined relevanceE.g. let g:pymode_lint_sort = ['E', 'C', 'I'] " Errors first 'E',after them 'C' and ...>let g:pymode_lint_sort = []Auto open cwindow (quickfix) if any errors have been found*'g:pymode_lint_cwindow'*>let g:pymode_lint_cwindow = 1Place error |signs| *'g:pymode_signs'*>let g:pymode_lint_signs = 1Definitions for |signs|>let g:pymode_lint_todo_symbol = 'WW'let g:pymode_lint_comment_symbol = 'CC'let g:pymode_lint_visual_symbol = 'RR'let g:pymode_lint_error_symbol = 'EE'let g:pymode_lint_info_symbol = 'II'let g:pymode_lint_pyflakes_symbol = 'FF'-------------------------------------------------------------------------------3.1 Set code checkers options ~*pymode-lint-options*Pymode has the ability to set code checkers options from pymode variables:Set PEP8 options *'g:pymode_lint_options_pep8'*>let g:pymode_lint_options_pep8 =\ {'max_line_length': g:pymode_options_max_line_length}See https://pep8.readthedocs.org/en/1.4.6/intro.html#configuration for moreinfo.Set Pyflakes options *'g:pymode_lint_options_pyflakes'*>let g:pymode_lint_options_pyflakes = { 'builtins': '_' }Set mccabe options *'g:pymode_lint_options_mccabe'*>let g:pymode_lint_options_mccabe = { 'complexity': 12 }Set pep257 options *'g:pymode_lint_options_pep257'*>let g:pymode_lint_options_pep257 = {}Set pylint options *'g:pymode_lint_options_pylint'*>let g:pymode_lint_options_pylint =\ {'max-line-length': g:pymode_options_max_line_length}See http://docs.pylint.org/features.html#options for more info.===============================================================================4. Rope support ~*pymode-rope*Pymode supports Rope refactoring operations, code completion and code assists.Commands:|:PymodeRopeAutoImport| -- Resolve import for element under cursor|:PymodeRopeModuleToPackage| -- Convert current module to package|:PymodeRopeNewProject| -- Open new Rope project in current working directory|:PymodeRopeRedo| -- Redo changes from last refactoring|:PymodeRopeRegenerate| -- Regenerate the project cache|:PymodeRopeRenameModule| -- Rename current module|:PymodeRopeUndo| -- Undo changes from last refactoringTurn on the rope script *'g:pymode_rope'*>let g:pymode_rope = 1.ropeproject Folder ~*.ropeproject**:PymodeRopeNewProject* [<path>] -- Open new Rope project in the given path*:PymodeRopeRegenerate* -- Regenerate the project cacheRope uses a folder inside projects for holding project configuration and data.Its default name is `.ropeproject`. It is recommended that you do not add the.ropeproject folder to version control system.Currently it is used for things such as:* The config.py file in this folder contains project configuration. Havea look at the default config.py file (which is created when itdoes not exist) for more information.* It can be used for saving project history, so that the next time you open theproject you can undo past changes.* It can be used to save information about object inferences.* It can be used to save a global name cache, which is used for auto-import.By default, if `.ropeproject` is not found in the current directory, rope willlook recursively for it in parent folders.Warning: If rope finds `.ropeproject` in a parent dir, it will use it withall its child directories, which may slow scanning down (because of many,possibly unrelated, files)Enable searching for |.ropeproject| in parent directories*'g:pymode_rope_lookup_project'*>let g:pymode_rope_lookup_project = 0You can also manually set the rope project directory. If not specified rope willuse the current directory.*'g:pymode_rope_project_root'*>let g:pymode_rope_project_root = ""The location of the `.ropeproject` folder may also be overridden if you wish tokeep it outside of your project root. The rope library treats this folder as aproject resource, so the path will always be relative to your project root (aleading '/' will be ignored). You may use `'..'` path segments to place thefolder outside of your project root.*'g:pymode_rope_ropefolder'*>let g:pymode_rope_ropefolder='.ropeproject'Show documentation for element under cursor ~Show documentation for object under cursor. *'g:pymode_rope_show_doc_bind'*Leave empty to disable the key binding.>let g:pymode_rope_show_doc_bind = '<C-c>d'Regenerate project cache on every save (if file has been modified)>let g:pymode_rope_regenerate_on_write = 1-------------------------------------------------------------------------------4.1 Completion ~*pymode-completion*By default you can use <Ctrl-Space> for autocompletion. The first entry willbe automatically selected and you can press <Return> to insert the entry inyour code. <C-X><C-O> and <C-P>/<C-N> works too.Autocompletion is also called by typing a period in |Insert| mode by default.If there's only one complete item, vim may be inserting it automaticallyinstead of using a popup menu. If the complete item which inserted is notyour wanted, you can roll it back use '<c-w>' in |Insert| mode or setup'completeopt' with `menuone` and `noinsert` in your vimrc. .e.g.>set completeopt=menuone,noinsertTurn on code completion support in the plugin *'g:pymode_rope_completion'*>let g:pymode_rope_completion = 1Turn on autocompletion when typing a period*'g:pymode_rope_complete_on_dot'*>let g:pymode_rope_complete_on_dot = 1Keymap for autocomplete *'g:pymode_rope_completion_bind'*>let g:pymode_rope_completion_bind = '<C-Space>'Extended autocompletion (rope could complete objects which have not beenimported) from project *'g:pymode_rope_autoimport'*>let g:pymode_rope_autoimport = 0Load modules to autoimport by default *'g:pymode_rope_autoimport_modules'*>let g:pymode_rope_autoimport_modules = ['os', 'shutil', 'datetime']Offer to unresolved import object after completion.>let g:pymode_rope_autoimport_import_after_complete = 0-------------------------------------------------------------------------------4.2 Find definition ~*pymode-rope-findit*By default when you press *<C-C>g* on any object in your code you will be movedto definition.Leave empty for disable key binding. *'g:pymode_rope_goto_definition_bind'*>let g:pymode_rope_goto_definition_bind = '<C-c>g'Command for open window when definition has been foundValues are (`e`, `new`, `vnew`) *'g:pymode_rope_goto_definition_cmd'*>let g:pymode_rope_goto_definition_cmd = 'new'-------------------------------------------------------------------------------4.3 Refactoring ~*pymode-rope-refactoring*Rename method/function/class/variable in the project ~Pymode can rename everything: classes, functions, modules, packages, methods,variables and keyword arguments.Keymap for rename method/function/class/variables under cursor*'g:pymode_rope_rename_bind'*>let g:pymode_rope_rename_bind = '<C-c>rr'Rename a current module/package ~*:PymodeRopeRenameModule* -- Rename current moduleKeymap for rename current module *'g:pymode_rope_rename_module_bind'*>let g:pymode_rope_rename_module_bind = '<C-c>r1r'Imports ~*:PymodeRopeAutoImport* -- Resolve import for element under cursorOrganize imports sorts imports, too. It does that according to PEP8. Unusedimports will be dropped.Keymap *'g:pymode_rope_organize_imports_bind'*>let g:pymode_rope_organize_imports_bind = '<C-c>ro'Insert import for current word under cursor *'g:pymode_rope_autoimport_bind'*Should be enabled |'g:pymode_rope_autoimport'|>let g:pymode_rope_autoimport_bind = '<C-c>ra'Convert module to package ~*'g:pymode_rope_module_to_package_bind'**:PymodeRopeModuleToPackage* -- convert current module to packageKeybinding:>let g:pymode_rope_module_to_package_bind = '<C-c>r1p'Extract method/variable ~*pymode-rope-extract*Extract method/variable from selected lines.*'g:pymode_rope_extract_method_bind'**'g:pymode_rope_extract_variable_bind'*>let g:pymode_rope_extract_method_bind = '<C-c>rm'let g:pymode_rope_extract_variable_bind = '<C-c>rl'Use function ~*pymode-rope-use*It tries to find the places in which a function can be used and changes thecode to call it instead.>let g:pymode_rope_use_function_bind = '<C-c>ru'Move method/fields ~*pymode-rope-move*It happens when you perform move refactoring on a method of a class. In thisrefactoring, a method of a class is moved to the class of one of itsattributes. The old method will call the new method. If you want to change allof the occurrences of the old method to use the new method you can inline itafterwards.>let g:pymode_rope_move_bind = '<C-c>rv'Change function signature ~>let g:pymode_rope_change_signature_bind = '<C-c>rs'-------------------------------------------------------------------------------4.4 Undo/Redo changes ~*pymode-rope-undo**pymode-rope-redo*Commands:*:PymodeRopeUndo* -- Undo last changes in the project*:PymodeRopeRedo* -- Redo last changes in the project===============================================================================5. Syntax ~*pymode-syntax*Turn on pymode syntax *'g:pymode_syntax'*>let g:pymode_syntax = 1Slower syntax synchronization that is better at handling code blocks indocstrings. Consider disabling this on slower hardware.*'g:pymode_syntax_slow_sync'*>let g:pymode_syntax_slow_sync = 1Enable all python highlights *'g:pymode_syntax_all'*>let g:pymode_syntax_all = 1Highlight "print" as a function *'g:pymode_syntax_print_as_function'*>let g:pymode_syntax_print_as_function = 0Highlight "async/await" keywords *'g:pymode_syntax_highlight_async_await'*>let g:pymode_syntax_highlight_async_await = g:pymode_syntax_allHighlight '=' operator *'g:pymode_syntax_highlight_equal_operator'*>let g:pymode_syntax_highlight_equal_operator = g:pymode_syntax_allHighlight '*' operator *'g:pymode_syntax_highlight_stars_operator'*>let g:pymode_syntax_highlight_stars_operator = g:pymode_syntax_allHighlight 'self' keyword *'g:pymode_syntax_highlight_self'*>let g:pymode_syntax_highlight_self = g:pymode_syntax_allHighlight indent's errors *'g:pymode_syntax_indent_errors'*>let g:pymode_syntax_indent_errors = g:pymode_syntax_allHighlight space's errors *'g:pymode_syntax_space_errors'*>let g:pymode_syntax_space_errors = g:pymode_syntax_allHighlight string formatting *'g:pymode_syntax_string_formatting'**'g:pymode_syntax_string_format'**'g:pymode_syntax_string_templates'**'g:pymode_syntax_doctests'*>let g:pymode_syntax_string_formatting = g:pymode_syntax_alllet g:pymode_syntax_string_format = g:pymode_syntax_alllet g:pymode_syntax_string_templates = g:pymode_syntax_alllet g:pymode_syntax_doctests = g:pymode_syntax_allHighlight builtin objects (True, False, ...) *'g:pymode_syntax_builtin_objs'*>let g:pymode_syntax_builtin_objs = g:pymode_syntax_allHighlight builtin types (str, list, ...) *'g:pymode_syntax_builtin_types'*>let g:pymode_syntax_builtin_types = g:pymode_syntax_allHighlight exceptions (TypeError, ValueError, ...)*'g:pymode_syntax_highlight_exceptions'*>let g:pymode_syntax_highlight_exceptions = g:pymode_syntax_allHighlight docstrings as pythonDocstring (otherwise as pythonString)*'g:pymode_syntax_docstrings'*>let g:pymode_syntax_docstrings = g:pymode_syntax_all===============================================================================6. FAQ ~*pymode-faq*1. Python-mode doesn't work---------------------------First remember to get the latest and updated version of the project sourcecode and also update the project submodules.Clear all python cache/compiled files (`*.pyc` files and `__pycache__`directory and everything under it). In Linux/Unix/MacOS you can run:`find . -type f -name '*.pyc' -delete && find . -type d -name '__pycache__' -delete`Then start python mode with:`vim -i NONE -u <path_to_pymode>/debugvimrc.vim`Reproduce the error and submit your python mode debug file. You can check itslocation with `:messages` for something like:`pymode debug msg 1: Starting debug on: 2017年11月18日 16:44:13 with file /tmp/pymode_debug_file.txt`Please submit the entire content of the file along with a reasoning of why theplugin seems broken.*Underlined do check for sensitive information in the file before*Underlined submitting!2. Rope completion is very slow *pymode-rope-slow*-------------------------------Rope creates a project-level service directory in |.ropeproject|If ``.ropeproject`` is not found in the current directory, rope will walkupwards looking for a ``.ropeproject`` in every dir of the parent path. Ifrope finds ``.ropeproject`` in a parent dir, it sets the project for all childdirs and the scan may be slow for so many dirs and files.Solutions:- Delete `.ropeproject` from the parent dir to make rope create `.ropeproject`in the current dir.- Run ``:PymodeRopeNewProject`` to make rope create ``.ropeproject`` in thecurrent dir.- Set |'g:pymode_rope_lookup_project'| to 0 for prevent searching in parentdirs.You may also set |'g:pymode_rope_project_root'| to manually specify the projectroot path.3. Pylint check is very slow----------------------------In some projects pylint may check slowly, because it also scans importedmodules if possible. Try using another code checker: see|'g:pymode_lint_checkers'|.You may set |exrc| and |secure| in your |vimrc| to auto-set custom settingsfrom `.vimrc` from your projects directories.4. OSX cannot import urandom----------------------------See: https://groups.google.com/forum/?fromgroups=#!topic/vim_dev/2NXKF6kDONoThe sequence of commands that fixed this:>brew unlink pythonbrew unlink macvimbrew remove macvimbrew install -v --force macvimbrew link macvimbrew link python5. Folding is slow------------------Python mode adds folding for definitions and multi line docstrings. These maybe costly to compute on large files. To disable them one simple has to to add:let g:pymode_folding = 1to their vimrc file.Beware that when editing python files in multiple windows vim computes thefolding for every typed character. Thus it may be useful to define:augroup unset_folding_in_insert_modeautocmd!autocmd InsertEnter *.py setlocal foldmethod=markerautocmd InsertLeave *.py setlocal foldmethod=expraugroup END===============================================================================7. Development~*pymode-development*This section briefly defines development guidelines for python-mode.1. This help file uses vim's conventions defined at |help-writing|.2. The name of the plugin shall be referred to as 'python-mode' throughoutdocumentation (except as a first word in a sentence in which case is'Python-mode').3. All defined functions should use vim's conventions and start with 'Pymode'.4. Special marks for project development are `XXX` and `TODO`. They provide aeasy way for developers to check pending issues.5. If submitting a pull request then a test should be added which smartlycovers the found bug/new feature. Check out the `tests/test.sh` (1) file andother executed files.A suggested structure is the following: add your test to`tests/test_bash` (2) and a vim script to be sourced at`tests/test_procedures_vimscript` (3). Try to make use of the already existingfiles at `tests/test_python_sample_code` (4). File (1) should be trigger thenewly added file (2). This latter file should invoke vim which in turn sourcesfile (3). File (3) may then read (4) as a first part of its assertionstructure and then execute the remaning of the instructions/assertions.===============================================================================8. Credits ~*pymode-credits*Kirill Klenovhttp://klen.github.com/http://github.com/klen/RopeCopyright (C) 2006-2010 Ali Gholami RudiCopyright (C) 2009-2010 Anton GritsayPylintCopyright (C) 2003-2011 LOGILAB S.A. (Paris, FRANCE).http://www.logilab.fr/Pyflakes:Copyright (c) 2005-2011 Divmod, Inc.Copyright (c) 2013-2014 Florent Xiclunahttps://github.com/PyCQA/pyflakesPEP8:Copyright (c) 2006 Johann C. Rocholl <johann@rocholl.net>http://github.com/jcrocholl/pep8autopep8:Copyright (c) 2012 hhatto <hhatto.jp@gmail.com>https://github.com/hhatto/autopep8Python syntax for vim:Copyright (c) 2010 Dmitry Vasilievhttp://www.hlabs.spb.ru/vim/python.vimPEP8 VIM indentationCopyright (c) 2012 Hynek Schlawack <hs@ox.cx>http://github.com/hynek/vim-python-pep8-indent===============================================================================9. License ~*pymode-license*Python-mode is released under the GNU lesser general public license.See: http://www.gnu.org/copyleft/lesser.htmlIf you like this plugin, I would very appreciated if you kindly send me apostcard :)My address is: "Russia, 143500, MO, Istra, pos. Severny 8-3" to "KirillKlenov". Thanks for your support!-------------------------------------------------------------------------------vim:tw=79:ts=8:ft=help:norl:
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。