PyCharm and filters for external tools

前端 未结 2 2047
再見小時候
再見小時候 2021-02-07 06:19

I\'m trying out PyCharm for Django development and so far am extremely happy. My team strictly follows PEP8 formatting and we use the pep8 command line program to check to make

相关标签:
2条回答
  • 2021-02-07 07:00

    PyCharm expects full file path for the links to work, not just the name.

    0 讨论(0)
  • 2021-02-07 07:06

    You're going to kick yourself when you hear this. You've missed a $ off the end of COLUMN. Thank you very much for this by the way, I followed your steps and I have it working perfectly. Your filter should be.

    $FILE_PATH$:$LINE$:$COLUMN$:.*
    

    UPD: To have it work for PyCharm 1.5 use

    $FILE_PATH$\:$LINE$\:$COLUMN$\:.*
    
    0 讨论(0)
提交回复
热议问题