Как в pycharm убрать жирный курсор

от admin

Не могу вписать код, и курсор строки выделен.Как убрать это?

Доброе времени суток. Второй день после установки PyCharm не могу разобраться что с ним. Курсор на строчке выделен, и он не даёт ничего вписать или удалить. Только при нажатии кнопки S приходит в себя, и я могу нормально работать.

прикреплю файл чтобы было понятнее:

и для сравнения:
5de4000f53305294458775.png

Как в pycharm убрать жирный курсор

I would like to change the mouse cursor type in pycharm 5.0.1 . I would like the normal line cursor like for word editors and not this kind of selection cursor. Kindly assist am new to python and using pycharm.

cursor

8 Answers 8

By default in Mac any editor comes with insert mode like In PyCharm :

So we need to uninstall the VIM from Pycharm in this case

Preferences —> Plugins —-> VIM (uninstall) and restart the py charm

It seems you have gone into overwrite mode.

Check what keyboard shortcut may be assigned to that in Preferences → Keymap → Editor Actions → Toggle Insert/Overwrite.

preferences

If it has no keyboard shortcut, or you can’t be bothered to remember it, you can toggle it by pressing Command/Ctrl + Shift + A , type «overwrite» in the popup, which should bring up the «Toggle Insert/Overwrite» option, and hit enter.

Как убрать толстую строку в PyCharm

При начале использовании программы и при выделение кода вместо обычной строки появляеться толстая белая строчка, которую никак кроме нажатия буквы S не убрать. Также с ней невозможно вписать хоть что-то в код, и исправить что-то там. Проблема в программе PyCharm на macOS.

Как указывали выше File > Settings > Editor > General > Appearance убрать галочку ‘Use block caret’

insolor's user avatar

Наверно Вы имеете ввиду тип курсора?
Чтобы можно было выделять, без всяких изменений зайдите в Preferences=>Editor=>Appearance проставить или убрать параметр Use block caret
После этого файл будет как в обычном редакторе.

Denis640Kb's user avatar

Дизайн сайта / логотип © 2023 Stack Exchange Inc; пользовательские материалы лицензированы в соответствии с CC BY-SA . rev 2023.3.11.43304

Нажимая «Принять все файлы cookie» вы соглашаетесь, что Stack Exchange может хранить файлы cookie на вашем устройстве и раскрывать информацию в соответствии с нашей Политикой в отношении файлов cookie.

Appearance

Use this page to customize the appearance of the editor.

Caret blinking (ms)

Select this checkbox to make the caret blink with the specified period (in milliseconds).

Use block caret

Select this checkbox to have the block caret applied in the Insert mode and the usual caret applied in the Overwrite mode. Clear this checkbox to have the usual caret applied in the Insert mode and the block caret applied in the Overwrite mode.

Show hard wrap and visual guides (configured in Code Style options)

Select this checkbox to have a thin vertical line at the right margin of the editor displayed. Refer to the description of the Code Style settings.

Show line numbers

Select this checkbox to have line numbering shown in the editor gutter.

Читать:
Length c что это

Show method separators

Select this checkbox to have thin lines displayed in classes, scripts or tests to separate methods.

Select this checkbox to have PyCharm display whitespaces or tabs (depending on the Code Style settings).

You can select the following options:

Leading : select this checkbox to add whitespaces before your code line.

Inner : select this checkbox to display whitespaces inside the line of your code.

Trailing : select this checkbox to display whitespaces after the code line.

Show indent guides

Select this checkbox to display vertical lines in the editor to indicate positions of indents and thus facilitate typing, manual formatting, reading, and maintaining code.

Show intention bulb

Whenever PyCharm detects that your code can be modified or improved, a light bulb icon appears on the current line in the editor: for intention actions and for quick-fixes. Clear this checkbox if you don’t want to see these icons. You can still access the list of available actions and quick-fixes by pressing Alt+Enter .

Show preview for intention actions when available

Automatically open the preview for intention actions.

When the option is disabled, you can press Ctrl+Q in the list of available intentions to toggle the preview on.

Render documentation comments

Select this checkbox to always render documentation comments as text paragraphs with proper formatting and links right in the editor. Rendered comments are easier to read, and they don’t overload your code with extra tags.

Show code lens on scrollbar hover

Select this checkbox to enable the lens mode.

Use editor font for inlay hints

Select this checkbox to use the font of the editor text instead of the inlay hints font, which is defined in the color scheme.

Enable HTML/XML tag tree highlighting

Select this checkbox to show the hierarchy of tags highlighted with different colors. If this option is enabled, you can define the following options:

Levels to highlight : specify the depth of hierarchy to be highlighted.

Opacity : specify brightness of highlighting

Highlighting is activated when there is more than one tag with the same name in the hierarchy.

Show CSS color preview as background

If this checkbox is selected, the background of the color value shows the color preview:

Showing CSS color preview in the background

By default, PyCharm also shows color preview icons in the gutter. Clicking such icon invokes the Color Picker where you can change the color value.

Click color gutter icon to open the color picker

To hide these gutter icons, clear the Color preview checkbox on the Editor | General | Gutter Icons page of the IDE settings Ctrl+Alt+S .

Show closing labels in Dart source code

This feature is only supported, when the Dart plugin is installed!

By default, PyCharm inserts autogenerated comments (closing labels) after the closing parentheses of objects within the build() method in Dart code. Clear the checkbox to suppress adding closing labels.

Похожие статьи