You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This keybinding recently started to interfere with basic editor behavior.
Command: jumpToNextSnippetPlaceholder
Keybinding: Enter
When: editorTextFocus && hasNextTabstop && inSnippetMode
Source: IntelliJ IDEA Keybindings
This gets triggered when accepting suggestion/autocomplete in some cases - instead of accepting selected suggestion cursor jumps outside of brackets.
Caught it in JSX/TSX syntax when working with attributes/props.
Removing this keybinding fixed the issue.
Steps to reproduce:
create an HTML div element in js/ts/jsx/tsx file
add style attribute. When editor suggests style - select it
Actual result (cursor jumped outside of brackets):
<divstyle={}~cursorishere~/>
This issue is not JSX-specific, happened in regular JS/TS as well. Seems to be related to When keybinding instructions and should be reproducible in other languages.
The text was updated successfully, but these errors were encountered:
This keybinding recently started to interfere with basic editor behavior.
Command:
jumpToNextSnippetPlaceholder
Keybinding:
Enter
When:
editorTextFocus && hasNextTabstop && inSnippetMode
Source:
IntelliJ IDEA Keybindings
This gets triggered when accepting suggestion/autocomplete in some cases - instead of accepting selected suggestion cursor jumps outside of brackets.
Caught it in
JSX/TSX
syntax when working with attributes/props.Removing this keybinding fixed the issue.
Steps to reproduce:
div
element injs/ts/jsx/tsx
filestyle
attribute. When editor suggestsstyle
- select itEnter
Expected result:
Actual result (cursor jumped outside of brackets):
This issue is not
JSX
-specific, happened in regularJS/TS
as well. Seems to be related toWhen
keybinding instructions and should be reproducible in other languages.The text was updated successfully, but these errors were encountered: