Skip to content

Commit

Permalink
Don't disable Jedi completion by default (#5701)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoxbro committed Apr 28, 2023
1 parent 4e576fe commit 5ec8e63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions holoviews/ipython/__init__.py
Expand Up @@ -99,7 +99,7 @@ class notebook_extension(extension):
using the matplotlib backend) may be used. This may be useful to
export figures to other formats such as PDF with nbconvert.""")

allow_jedi_completion = param.Boolean(default=False, doc="""
allow_jedi_completion = param.Boolean(default=True, doc="""
Whether to allow jedi tab-completion to be enabled in IPython.
Disabled by default because many HoloViews features rely on
tab-completion machinery not supported when using jedi.""")
Expand Down Expand Up @@ -235,8 +235,8 @@ def _get_resources(self, args, params):

unmatched_args = set(args) - set(resources)
if unmatched_args:
display(HTML('<b>Warning:</b> Unrecognized resources %s'
% ', '.join(unmatched_args)))
display(HTML("<b>Warning:</b> Unrecognized resources '%s'"
% "', '".join(unmatched_args)))

resources = [r for r in resources if r not in disabled]
if ('holoviews' not in disabled) and ('holoviews' not in resources):
Expand Down

0 comments on commit 5ec8e63

Please sign in to comment.