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
(1) Usually the completion fills just the object name, but for functions the behavior is somewhat "stochastic": sometimes the completion include the ( and the positional parameter names, but not the ); sometimes the completion is just of the function name. That can be slightly addressed with a new configuration (besides auto_complete_function_params) to choose whether to add parameters+parentheses when the function name gets completed or to just complete the name (hence to add the parameters+parentheses a new completion would need to be "requested" after the name completion).
(2) The inconsistency is that the missing ) appears when auto_match_enabled is set as true, but not when set as false (here it's false, and that's how it should be kept, because it applies to several scenarios, not just the Jedi completion). That's a dependency on an external configuration. If the completion opened the parentheses, it should close it as well, no matter the auto_match_enabled value (like in emmet). The goal of setting auto_match_enabled as false is to require all typed parentheses to be manually paired, so that for every ( typed, a ) should be typed as well. Partial completion frustrate this "mental stack" of parentheses on typing, so I would presume that probably no one with auto_match_enabled set as false desires partial completion of not-typed parentheses (unmatched parenthesis completion).
I see no use in unmatched parenthesis completion (the default when auto_match_enabled is false) since it's simply annoying (the completion is either incomplete or [partially] undesired, the user will obviously need to type or erase something, that's like a snippet that generates invalid code due to the lack of the ending symbol), but that could be another configuration.
The text was updated successfully, but these errors were encountered:
(1) Usually the completion fills just the object name, but for functions the behavior is somewhat "stochastic": sometimes the completion include the
(
and the positional parameter names, but not the)
; sometimes the completion is just of the function name. That can be slightly addressed with a new configuration (besidesauto_complete_function_params
) to choose whether to add parameters+parentheses when the function name gets completed or to just complete the name (hence to add the parameters+parentheses a new completion would need to be "requested" after the name completion).(2) The inconsistency is that the missing
)
appears whenauto_match_enabled
is set astrue
, but not when set asfalse
(here it's false, and that's how it should be kept, because it applies to several scenarios, not just the Jedi completion). That's a dependency on an external configuration. If the completion opened the parentheses, it should close it as well, no matter theauto_match_enabled
value (like in emmet). The goal of settingauto_match_enabled
asfalse
is to require all typed parentheses to be manually paired, so that for every(
typed, a)
should be typed as well. Partial completion frustrate this "mental stack" of parentheses on typing, so I would presume that probably no one withauto_match_enabled
set asfalse
desires partial completion of not-typed parentheses (unmatched parenthesis completion).I see no use in unmatched parenthesis completion (the default when
auto_match_enabled
isfalse
) since it's simply annoying (the completion is either incomplete or [partially] undesired, the user will obviously need to type or erase something, that's like a snippet that generates invalid code due to the lack of the ending symbol), but that could be another configuration.The text was updated successfully, but these errors were encountered: