Skip to content

Commit

Permalink
Renamed completers and bumped CONF_VERSION
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hirschfeld committed Apr 27, 2015
1 parent 88e4ac1 commit e2bd6bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spyderlib/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ def is_ubuntu():
# 2. If you want to *remove* options that are no longer needed in our codebase,
# you need to do a MAJOR update in version, e.g. from 3.0.0 to 4.0.0
# 3. You don't need to touch this value if you're just adding a new option
CONF_VERSION = '16.1.0'
CONF_VERSION = '17.0.0'

# XXX: Previously we had load=(not DEV) here but DEV was set to *False*.
# Check if it *really* needs to be updated or not
Expand Down
2 changes: 1 addition & 1 deletion spyderlib/plugins/ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def setup_page(self):
comp_group = QGroupBox(_("Completion Widget"))
comp_label = QLabel(_("Decide what type of completion to use"))
comp_label.setWordWrap(True)
completers = [("plain", 0), ("droplist", 1), ("ncurses", 2)]
completers = [("Graphical", 0), ("Terminal", 1), ("Plain", 2)]
comp_box = self.create_combobox(_("Completion:")+" ", completers,
'completion_widget', default=0)
comp_layout = QVBoxLayout()
Expand Down
2 changes: 1 addition & 1 deletion spyderlib/widgets/ipython.py
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ def shellwidget_config(self):

# Gui completion widget
completion_widget_o = CONF.get('ipython_console', 'completion_widget')
completions = {0: "plain", 1: "droplist", 2: "ncurses"}
completions = {0: "droplist", 1: "ncurses", 2: "plain"}
spy_cfg.IPythonWidget.gui_completion = completions[completion_widget_o]

# Pager
Expand Down

0 comments on commit e2bd6bb

Please sign in to comment.