File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ CONTENTS *pymode-contents
4040
4141XXX IMPORTANT: As of 2017-11-18 python-mode is going through a major redesign.
4242Thus some of its functionality may not work as expected. Please be patient and
43- do report bugs or inconsistencies in its documentation.
43+ do report bugs or inconsistencies in its documentation. But remember to look
44+ for already openned bug reports for the same issue before creating a new one.
4445
4546Python-mode is a vim plugin that allows you to use the pylint, rope, and pydoc
4647libraries in vim to provide features like python code bug checking,
@@ -693,7 +694,14 @@ Highlight docstrings as pythonDocstring (otherwise as pythonString)
6936941. Python-mode doesn't work
694695---------------------------
695696
696- Start python mode with:
697+ Remember to get the latest and updated version of the project source code and
698+ also update the project submodules.
699+
700+ Clear all python cache/compiled files (`* .pyc` files and `__pycache__`
701+ directory and everything under it). In Linux/Unix/MacOS you can run:
702+ `find . -type f -name '*.pyc' -delete && find . -type d -name '__pycache__' -delete`
703+
704+ Then start python mode with:
697705`vim -i NONE -u <path_to_pymode> /debugvimrc.vim`
698706Reproduce the error and submit your python mode debug file. You can check its
699707location with `:messages ` for something like:
Original file line number Diff line number Diff line change @@ -140,7 +140,12 @@ If your question is not described there then you already know what to do
140140
141141Nevertheless just a refresher on how to submit bugs:
142142
143- ** (From the FAQ)** Start python mode with:
143+ ** (From the FAQ)**
144+ Clear all python cache/compiled files (` *.pyc ` files and ` __pycache__ `
145+ directory and everything under it). In Linux/Unix/MacOS you can run:
146+ ` find . -type f -name '*.pyc' -delete && find . -type d -name '__pycache__' -delete `
147+
148+ Then start python mode with:
144149` vim -i NONE -u <path_to_pymode>/debugvimrc.vim `
145150Reproduce the error and submit your python mode debug file. You can check its
146151location with ` :messages ` for something like:
You can’t perform that action at this time.
0 commit comments