如何防止Pycharm在尝试编辑特定行或函数/类名称时打开函数或类的源文件?

问题描述 投票:0回答:1

我当前的Pycharm版本是2023.2.5(Ubuntu linux) 每当我尝试编辑函数名称或单击类名时,它都会带我到它的源文件,这很烦人。如何禁用此功能?

from .views import test  

"""when I click on the above line to add test2,it takes me to the views.py
Expected behavior:-Should be able to edit a line(add to the end of it) without Pycharm taking me to the source file of that function or class..."""

urlpatterns = [path('home', test, name='test'),
               path('about', test2, name='test2')]
python django pycharm
1个回答
0
投票

经过一些研究,我发现问题是由于我添加的键盘映射所致,在新选项卡中单击即可打开文件。
在 Pycharm 中

Ctrl Alt S->Keymap->Jump to Source->right click on it->remove click
为我工作!

© www.soinside.com 2019 - 2024. All rights reserved.