id int32 0 252k | repo stringlengths 7 55 | path stringlengths 4 127 | func_name stringlengths 1 88 | original_string stringlengths 75 19.8k | language stringclasses 1
value | code stringlengths 75 19.8k | code_tokens list | docstring stringlengths 3 17.3k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 87 242 |
|---|---|---|---|---|---|---|---|---|---|---|---|
30,700 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | StackHistory._update_id_list | def _update_id_list(self):
"""Update list of corresponpding ids and tabs."""
self.id_list = [id(self.editor.tabs.widget(_i))
for _i in range(self.editor.tabs.count())] | python | def _update_id_list(self):
"""Update list of corresponpding ids and tabs."""
self.id_list = [id(self.editor.tabs.widget(_i))
for _i in range(self.editor.tabs.count())] | [
"def",
"_update_id_list",
"(",
"self",
")",
":",
"self",
".",
"id_list",
"=",
"[",
"id",
"(",
"self",
".",
"editor",
".",
"tabs",
".",
"widget",
"(",
"_i",
")",
")",
"for",
"_i",
"in",
"range",
"(",
"self",
".",
"editor",
".",
"tabs",
".",
"count... | Update list of corresponpding ids and tabs. | [
"Update",
"list",
"of",
"corresponpding",
"ids",
"and",
"tabs",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L249-L252 |
30,701 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | StackHistory.refresh | def refresh(self):
"""Remove editors that are not longer open."""
self._update_id_list()
for _id in self.history[:]:
if _id not in self.id_list:
self.history.remove(_id) | python | def refresh(self):
"""Remove editors that are not longer open."""
self._update_id_list()
for _id in self.history[:]:
if _id not in self.id_list:
self.history.remove(_id) | [
"def",
"refresh",
"(",
"self",
")",
":",
"self",
".",
"_update_id_list",
"(",
")",
"for",
"_id",
"in",
"self",
".",
"history",
"[",
":",
"]",
":",
"if",
"_id",
"not",
"in",
"self",
".",
"id_list",
":",
"self",
".",
"history",
".",
"remove",
"(",
... | Remove editors that are not longer open. | [
"Remove",
"editors",
"that",
"are",
"not",
"longer",
"open",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L254-L259 |
30,702 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | StackHistory.remove | def remove(self, tab_index):
"""Remove the widget at the corresponding tab_index."""
_id = id(self.editor.tabs.widget(tab_index))
if _id in self.history:
self.history.remove(_id) | python | def remove(self, tab_index):
"""Remove the widget at the corresponding tab_index."""
_id = id(self.editor.tabs.widget(tab_index))
if _id in self.history:
self.history.remove(_id) | [
"def",
"remove",
"(",
"self",
",",
"tab_index",
")",
":",
"_id",
"=",
"id",
"(",
"self",
".",
"editor",
".",
"tabs",
".",
"widget",
"(",
"tab_index",
")",
")",
"if",
"_id",
"in",
"self",
".",
"history",
":",
"self",
".",
"history",
".",
"remove",
... | Remove the widget at the corresponding tab_index. | [
"Remove",
"the",
"widget",
"at",
"the",
"corresponding",
"tab_index",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L287-L291 |
30,703 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | StackHistory.remove_and_append | def remove_and_append(self, index):
"""Remove previous entrances of a tab, and add it as the latest."""
while index in self:
self.remove(index)
self.append(index) | python | def remove_and_append(self, index):
"""Remove previous entrances of a tab, and add it as the latest."""
while index in self:
self.remove(index)
self.append(index) | [
"def",
"remove_and_append",
"(",
"self",
",",
"index",
")",
":",
"while",
"index",
"in",
"self",
":",
"self",
".",
"remove",
"(",
"index",
")",
"self",
".",
"append",
"(",
"index",
")"
] | Remove previous entrances of a tab, and add it as the latest. | [
"Remove",
"previous",
"entrances",
"of",
"a",
"tab",
"and",
"add",
"it",
"as",
"the",
"latest",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L293-L297 |
30,704 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.load_data | def load_data(self):
"""Fill ListWidget with the tabs texts.
Add elements in inverse order of stack_history.
"""
for index in reversed(self.stack_history):
text = self.tabs.tabText(index)
text = text.replace('&', '')
item = QListWidgetItem(i... | python | def load_data(self):
"""Fill ListWidget with the tabs texts.
Add elements in inverse order of stack_history.
"""
for index in reversed(self.stack_history):
text = self.tabs.tabText(index)
text = text.replace('&', '')
item = QListWidgetItem(i... | [
"def",
"load_data",
"(",
"self",
")",
":",
"for",
"index",
"in",
"reversed",
"(",
"self",
".",
"stack_history",
")",
":",
"text",
"=",
"self",
".",
"tabs",
".",
"tabText",
"(",
"index",
")",
"text",
"=",
"text",
".",
"replace",
"(",
"'&'",
",",
"''... | Fill ListWidget with the tabs texts.
Add elements in inverse order of stack_history. | [
"Fill",
"ListWidget",
"with",
"the",
"tabs",
"texts",
".",
"Add",
"elements",
"in",
"inverse",
"order",
"of",
"stack_history",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L326-L336 |
30,705 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.item_selected | def item_selected(self, item=None):
"""Change to the selected document and hide this widget."""
if item is None:
item = self.currentItem()
# stack history is in inverse order
try:
index = self.stack_history[-(self.currentRow()+1)]
except IndexErro... | python | def item_selected(self, item=None):
"""Change to the selected document and hide this widget."""
if item is None:
item = self.currentItem()
# stack history is in inverse order
try:
index = self.stack_history[-(self.currentRow()+1)]
except IndexErro... | [
"def",
"item_selected",
"(",
"self",
",",
"item",
"=",
"None",
")",
":",
"if",
"item",
"is",
"None",
":",
"item",
"=",
"self",
".",
"currentItem",
"(",
")",
"# stack history is in inverse order\r",
"try",
":",
"index",
"=",
"self",
".",
"stack_history",
"[... | Change to the selected document and hide this widget. | [
"Change",
"to",
"the",
"selected",
"document",
"and",
"hide",
"this",
"widget",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L338-L351 |
30,706 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.select_row | def select_row(self, steps):
"""Move selected row a number of steps.
Iterates in a cyclic behaviour.
"""
row = (self.currentRow() + steps) % self.count()
self.setCurrentRow(row) | python | def select_row(self, steps):
"""Move selected row a number of steps.
Iterates in a cyclic behaviour.
"""
row = (self.currentRow() + steps) % self.count()
self.setCurrentRow(row) | [
"def",
"select_row",
"(",
"self",
",",
"steps",
")",
":",
"row",
"=",
"(",
"self",
".",
"currentRow",
"(",
")",
"+",
"steps",
")",
"%",
"self",
".",
"count",
"(",
")",
"self",
".",
"setCurrentRow",
"(",
"row",
")"
] | Move selected row a number of steps.
Iterates in a cyclic behaviour. | [
"Move",
"selected",
"row",
"a",
"number",
"of",
"steps",
".",
"Iterates",
"in",
"a",
"cyclic",
"behaviour",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L353-L359 |
30,707 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.set_dialog_position | def set_dialog_position(self):
"""Positions the tab switcher in the top-center of the editor."""
left = self.editor.geometry().width()/2 - self.width()/2
top = self.editor.tabs.tabBar().geometry().height()
self.move(self.editor.mapToGlobal(QPoint(left, top))) | python | def set_dialog_position(self):
"""Positions the tab switcher in the top-center of the editor."""
left = self.editor.geometry().width()/2 - self.width()/2
top = self.editor.tabs.tabBar().geometry().height()
self.move(self.editor.mapToGlobal(QPoint(left, top))) | [
"def",
"set_dialog_position",
"(",
"self",
")",
":",
"left",
"=",
"self",
".",
"editor",
".",
"geometry",
"(",
")",
".",
"width",
"(",
")",
"/",
"2",
"-",
"self",
".",
"width",
"(",
")",
"/",
"2",
"top",
"=",
"self",
".",
"editor",
".",
"tabs",
... | Positions the tab switcher in the top-center of the editor. | [
"Positions",
"the",
"tab",
"switcher",
"in",
"the",
"top",
"-",
"center",
"of",
"the",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L361-L366 |
30,708 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.keyReleaseEvent | def keyReleaseEvent(self, event):
"""Reimplement Qt method.
Handle "most recent used" tab behavior,
When ctrl is released and tab_switcher is visible, tab will be changed.
"""
if self.isVisible():
qsc = get_shortcut(context='Editor', name='Go to next file')
... | python | def keyReleaseEvent(self, event):
"""Reimplement Qt method.
Handle "most recent used" tab behavior,
When ctrl is released and tab_switcher is visible, tab will be changed.
"""
if self.isVisible():
qsc = get_shortcut(context='Editor', name='Go to next file')
... | [
"def",
"keyReleaseEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"self",
".",
"isVisible",
"(",
")",
":",
"qsc",
"=",
"get_shortcut",
"(",
"context",
"=",
"'Editor'",
",",
"name",
"=",
"'Go to next file'",
")",
"for",
"key",
"in",
"qsc",
".",
"spli... | Reimplement Qt method.
Handle "most recent used" tab behavior,
When ctrl is released and tab_switcher is visible, tab will be changed. | [
"Reimplement",
"Qt",
"method",
".",
"Handle",
"most",
"recent",
"used",
"tab",
"behavior",
"When",
"ctrl",
"is",
"released",
"and",
"tab_switcher",
"is",
"visible",
"tab",
"will",
"be",
"changed",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L368-L382 |
30,709 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.keyPressEvent | def keyPressEvent(self, event):
"""Reimplement Qt method to allow cyclic behavior."""
if event.key() == Qt.Key_Down:
self.select_row(1)
elif event.key() == Qt.Key_Up:
self.select_row(-1) | python | def keyPressEvent(self, event):
"""Reimplement Qt method to allow cyclic behavior."""
if event.key() == Qt.Key_Down:
self.select_row(1)
elif event.key() == Qt.Key_Up:
self.select_row(-1) | [
"def",
"keyPressEvent",
"(",
"self",
",",
"event",
")",
":",
"if",
"event",
".",
"key",
"(",
")",
"==",
"Qt",
".",
"Key_Down",
":",
"self",
".",
"select_row",
"(",
"1",
")",
"elif",
"event",
".",
"key",
"(",
")",
"==",
"Qt",
".",
"Key_Up",
":",
... | Reimplement Qt method to allow cyclic behavior. | [
"Reimplement",
"Qt",
"method",
"to",
"allow",
"cyclic",
"behavior",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L384-L389 |
30,710 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | TabSwitcherWidget.focusOutEvent | def focusOutEvent(self, event):
"""Reimplement Qt method to close the widget when loosing focus."""
event.ignore()
# Inspired from CompletionWidget.focusOutEvent() in file
# widgets/sourcecode/base.py line 212
if sys.platform == "darwin":
if event.reason() != Qt... | python | def focusOutEvent(self, event):
"""Reimplement Qt method to close the widget when loosing focus."""
event.ignore()
# Inspired from CompletionWidget.focusOutEvent() in file
# widgets/sourcecode/base.py line 212
if sys.platform == "darwin":
if event.reason() != Qt... | [
"def",
"focusOutEvent",
"(",
"self",
",",
"event",
")",
":",
"event",
".",
"ignore",
"(",
")",
"# Inspired from CompletionWidget.focusOutEvent() in file\r",
"# widgets/sourcecode/base.py line 212\r",
"if",
"sys",
".",
"platform",
"==",
"\"darwin\"",
":",
"if",
"event",
... | Reimplement Qt method to close the widget when loosing focus. | [
"Reimplement",
"Qt",
"method",
"to",
"close",
"the",
"widget",
"when",
"loosing",
"focus",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L391-L400 |
30,711 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.setup_editorstack | def setup_editorstack(self, parent, layout):
"""Setup editorstack's layout"""
layout.setSpacing(1)
self.fname_label = QLabel()
self.fname_label.setStyleSheet(
"QLabel {margin: 0px; padding: 3px;}")
layout.addWidget(self.fname_label)
menu_btn = creat... | python | def setup_editorstack(self, parent, layout):
"""Setup editorstack's layout"""
layout.setSpacing(1)
self.fname_label = QLabel()
self.fname_label.setStyleSheet(
"QLabel {margin: 0px; padding: 3px;}")
layout.addWidget(self.fname_label)
menu_btn = creat... | [
"def",
"setup_editorstack",
"(",
"self",
",",
"parent",
",",
"layout",
")",
":",
"layout",
".",
"setSpacing",
"(",
"1",
")",
"self",
".",
"fname_label",
"=",
"QLabel",
"(",
")",
"self",
".",
"fname_label",
".",
"setStyleSheet",
"(",
"\"QLabel {margin: 0px; p... | Setup editorstack's layout | [
"Setup",
"editorstack",
"s",
"layout"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L737-L787 |
30,712 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.update_fname_label | def update_fname_label(self):
"""Upadte file name label."""
filename = to_text_string(self.get_current_filename())
if len(filename) > 100:
shorten_filename = u'...' + filename[-100:]
else:
shorten_filename = filename
self.fname_label.setText(shorten... | python | def update_fname_label(self):
"""Upadte file name label."""
filename = to_text_string(self.get_current_filename())
if len(filename) > 100:
shorten_filename = u'...' + filename[-100:]
else:
shorten_filename = filename
self.fname_label.setText(shorten... | [
"def",
"update_fname_label",
"(",
"self",
")",
":",
"filename",
"=",
"to_text_string",
"(",
"self",
".",
"get_current_filename",
"(",
")",
")",
"if",
"len",
"(",
"filename",
")",
">",
"100",
":",
"shorten_filename",
"=",
"u'...'",
"+",
"filename",
"[",
"-"... | Upadte file name label. | [
"Upadte",
"file",
"name",
"label",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L790-L797 |
30,713 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.clone_from | def clone_from(self, other):
"""Clone EditorStack from other instance"""
for other_finfo in other.data:
self.clone_editor_from(other_finfo, set_current=True)
self.set_stack_index(other.get_stack_index()) | python | def clone_from(self, other):
"""Clone EditorStack from other instance"""
for other_finfo in other.data:
self.clone_editor_from(other_finfo, set_current=True)
self.set_stack_index(other.get_stack_index()) | [
"def",
"clone_from",
"(",
"self",
",",
"other",
")",
":",
"for",
"other_finfo",
"in",
"other",
".",
"data",
":",
"self",
".",
"clone_editor_from",
"(",
"other_finfo",
",",
"set_current",
"=",
"True",
")",
"self",
".",
"set_stack_index",
"(",
"other",
".",
... | Clone EditorStack from other instance | [
"Clone",
"EditorStack",
"from",
"other",
"instance"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L830-L834 |
30,714 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.open_fileswitcher_dlg | def open_fileswitcher_dlg(self):
"""Open file list management dialog box"""
if not self.tabs.count():
return
if self.fileswitcher_dlg is not None and \
self.fileswitcher_dlg.is_visible:
self.fileswitcher_dlg.hide()
self.fileswitcher_dlg.is_vis... | python | def open_fileswitcher_dlg(self):
"""Open file list management dialog box"""
if not self.tabs.count():
return
if self.fileswitcher_dlg is not None and \
self.fileswitcher_dlg.is_visible:
self.fileswitcher_dlg.hide()
self.fileswitcher_dlg.is_vis... | [
"def",
"open_fileswitcher_dlg",
"(",
"self",
")",
":",
"if",
"not",
"self",
".",
"tabs",
".",
"count",
"(",
")",
":",
"return",
"if",
"self",
".",
"fileswitcher_dlg",
"is",
"not",
"None",
"and",
"self",
".",
"fileswitcher_dlg",
".",
"is_visible",
":",
"s... | Open file list management dialog box | [
"Open",
"file",
"list",
"management",
"dialog",
"box"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L837-L850 |
30,715 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.go_to_line | def go_to_line(self, line=None):
"""Go to line dialog"""
if line is not None:
# When this method is called from the flileswitcher, a line
# number is specified, so there is no need for the dialog.
self.get_current_editor().go_to_line(line)
else:
... | python | def go_to_line(self, line=None):
"""Go to line dialog"""
if line is not None:
# When this method is called from the flileswitcher, a line
# number is specified, so there is no need for the dialog.
self.get_current_editor().go_to_line(line)
else:
... | [
"def",
"go_to_line",
"(",
"self",
",",
"line",
"=",
"None",
")",
":",
"if",
"line",
"is",
"not",
"None",
":",
"# When this method is called from the flileswitcher, a line\r",
"# number is specified, so there is no need for the dialog.\r",
"self",
".",
"get_current_editor",
... | Go to line dialog | [
"Go",
"to",
"line",
"dialog"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L861-L869 |
30,716 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.set_or_edit_conditional_breakpoint | def set_or_edit_conditional_breakpoint(self):
"""Set conditional breakpoint"""
if self.data:
editor = self.get_current_editor()
editor.debugger.toogle_breakpoint(edit_condition=True) | python | def set_or_edit_conditional_breakpoint(self):
"""Set conditional breakpoint"""
if self.data:
editor = self.get_current_editor()
editor.debugger.toogle_breakpoint(edit_condition=True) | [
"def",
"set_or_edit_conditional_breakpoint",
"(",
"self",
")",
":",
"if",
"self",
".",
"data",
":",
"editor",
"=",
"self",
".",
"get_current_editor",
"(",
")",
"editor",
".",
"debugger",
".",
"toogle_breakpoint",
"(",
"edit_condition",
"=",
"True",
")"
] | Set conditional breakpoint | [
"Set",
"conditional",
"breakpoint"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L877-L881 |
30,717 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.set_bookmark | def set_bookmark(self, slot_num):
"""Bookmark current position to given slot."""
if self.data:
editor = self.get_current_editor()
editor.add_bookmark(slot_num) | python | def set_bookmark(self, slot_num):
"""Bookmark current position to given slot."""
if self.data:
editor = self.get_current_editor()
editor.add_bookmark(slot_num) | [
"def",
"set_bookmark",
"(",
"self",
",",
"slot_num",
")",
":",
"if",
"self",
".",
"data",
":",
"editor",
"=",
"self",
".",
"get_current_editor",
"(",
")",
"editor",
".",
"add_bookmark",
"(",
"slot_num",
")"
] | Bookmark current position to given slot. | [
"Bookmark",
"current",
"position",
"to",
"given",
"slot",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L883-L887 |
30,718 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.inspect_current_object | def inspect_current_object(self):
"""Inspect current object in the Help plugin"""
editor = self.get_current_editor()
editor.sig_display_signature.connect(self.display_signature_help)
line, col = editor.get_cursor_line_column()
editor.request_hover(line, col) | python | def inspect_current_object(self):
"""Inspect current object in the Help plugin"""
editor = self.get_current_editor()
editor.sig_display_signature.connect(self.display_signature_help)
line, col = editor.get_cursor_line_column()
editor.request_hover(line, col) | [
"def",
"inspect_current_object",
"(",
"self",
")",
":",
"editor",
"=",
"self",
".",
"get_current_editor",
"(",
")",
"editor",
".",
"sig_display_signature",
".",
"connect",
"(",
"self",
".",
"display_signature_help",
")",
"line",
",",
"col",
"=",
"editor",
".",... | Inspect current object in the Help plugin | [
"Inspect",
"current",
"object",
"in",
"the",
"Help",
"plugin"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L889-L894 |
30,719 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.initialize_outlineexplorer | def initialize_outlineexplorer(self):
"""This method is called separately from 'set_oulineexplorer' to avoid
doing unnecessary updates when there are multiple editor windows"""
for index in range(self.get_stack_count()):
if index != self.get_stack_index():
self._... | python | def initialize_outlineexplorer(self):
"""This method is called separately from 'set_oulineexplorer' to avoid
doing unnecessary updates when there are multiple editor windows"""
for index in range(self.get_stack_count()):
if index != self.get_stack_index():
self._... | [
"def",
"initialize_outlineexplorer",
"(",
"self",
")",
":",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"get_stack_count",
"(",
")",
")",
":",
"if",
"index",
"!=",
"self",
".",
"get_stack_index",
"(",
")",
":",
"self",
".",
"_refresh_outlineexplorer",
... | This method is called separately from 'set_oulineexplorer' to avoid
doing unnecessary updates when there are multiple editor windows | [
"This",
"method",
"is",
"called",
"separately",
"from",
"set_oulineexplorer",
"to",
"avoid",
"doing",
"unnecessary",
"updates",
"when",
"there",
"are",
"multiple",
"editor",
"windows"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L923-L928 |
30,720 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.get_tab_text | def get_tab_text(self, index, is_modified=None, is_readonly=None):
"""Return tab title."""
files_path_list = [finfo.filename for finfo in self.data]
fname = self.data[index].filename
fname = sourcecode.disambiguate_fname(files_path_list, fname)
return self.__modified_readonl... | python | def get_tab_text(self, index, is_modified=None, is_readonly=None):
"""Return tab title."""
files_path_list = [finfo.filename for finfo in self.data]
fname = self.data[index].filename
fname = sourcecode.disambiguate_fname(files_path_list, fname)
return self.__modified_readonl... | [
"def",
"get_tab_text",
"(",
"self",
",",
"index",
",",
"is_modified",
"=",
"None",
",",
"is_readonly",
"=",
"None",
")",
":",
"files_path_list",
"=",
"[",
"finfo",
".",
"filename",
"for",
"finfo",
"in",
"self",
".",
"data",
"]",
"fname",
"=",
"self",
"... | Return tab title. | [
"Return",
"tab",
"title",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1183-L1189 |
30,721 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.get_tab_tip | def get_tab_tip(self, filename, is_modified=None, is_readonly=None):
"""Return tab menu title"""
text = u"%s — %s"
text = self.__modified_readonly_title(text,
is_modified, is_readonly)
if self.tempfile_path is not None\
and f... | python | def get_tab_tip(self, filename, is_modified=None, is_readonly=None):
"""Return tab menu title"""
text = u"%s — %s"
text = self.__modified_readonly_title(text,
is_modified, is_readonly)
if self.tempfile_path is not None\
and f... | [
"def",
"get_tab_tip",
"(",
"self",
",",
"filename",
",",
"is_modified",
"=",
"None",
",",
"is_readonly",
"=",
"None",
")",
":",
"text",
"=",
"u\"%s — %s\"\r",
"text",
"=",
"self",
".",
"__modified_readonly_title",
"(",
"text",
",",
"is_modified",
",",
"is_re... | Return tab menu title | [
"Return",
"tab",
"menu",
"title"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1191-L1201 |
30,722 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.__setup_menu | def __setup_menu(self):
"""Setup tab context menu before showing it"""
self.menu.clear()
if self.data:
actions = self.menu_actions
else:
actions = (self.new_action, self.open_action)
self.setFocus() # --> Editor.__get_focus_editortabwidget
... | python | def __setup_menu(self):
"""Setup tab context menu before showing it"""
self.menu.clear()
if self.data:
actions = self.menu_actions
else:
actions = (self.new_action, self.open_action)
self.setFocus() # --> Editor.__get_focus_editortabwidget
... | [
"def",
"__setup_menu",
"(",
"self",
")",
":",
"self",
".",
"menu",
".",
"clear",
"(",
")",
"if",
"self",
".",
"data",
":",
"actions",
"=",
"self",
".",
"menu_actions",
"else",
":",
"actions",
"=",
"(",
"self",
".",
"new_action",
",",
"self",
".",
"... | Setup tab context menu before showing it | [
"Setup",
"tab",
"context",
"menu",
"before",
"showing",
"it"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1272-L1281 |
30,723 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.set_current_filename | def set_current_filename(self, filename, focus=True):
"""Set current filename and return the associated editor instance."""
index = self.has_filename(filename)
if index is not None:
if focus:
self.set_stack_index(index)
editor = self.data[index].edit... | python | def set_current_filename(self, filename, focus=True):
"""Set current filename and return the associated editor instance."""
index = self.has_filename(filename)
if index is not None:
if focus:
self.set_stack_index(index)
editor = self.data[index].edit... | [
"def",
"set_current_filename",
"(",
"self",
",",
"filename",
",",
"focus",
"=",
"True",
")",
":",
"index",
"=",
"self",
".",
"has_filename",
"(",
"filename",
")",
"if",
"index",
"is",
"not",
"None",
":",
"if",
"focus",
":",
"self",
".",
"set_stack_index"... | Set current filename and return the associated editor instance. | [
"Set",
"current",
"filename",
"and",
"return",
"the",
"associated",
"editor",
"instance",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1380-L1392 |
30,724 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.get_index_from_filename | def get_index_from_filename(self, filename):
"""
Return the position index of a file in the tab bar of the editorstack
from its name.
"""
filenames = [d.filename for d in self.data]
return filenames.index(filename) | python | def get_index_from_filename(self, filename):
"""
Return the position index of a file in the tab bar of the editorstack
from its name.
"""
filenames = [d.filename for d in self.data]
return filenames.index(filename) | [
"def",
"get_index_from_filename",
"(",
"self",
",",
"filename",
")",
":",
"filenames",
"=",
"[",
"d",
".",
"filename",
"for",
"d",
"in",
"self",
".",
"data",
"]",
"return",
"filenames",
".",
"index",
"(",
"filename",
")"
] | Return the position index of a file in the tab bar of the editorstack
from its name. | [
"Return",
"the",
"position",
"index",
"of",
"a",
"file",
"in",
"the",
"tab",
"bar",
"of",
"the",
"editorstack",
"from",
"its",
"name",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1413-L1419 |
30,725 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.move_editorstack_data | def move_editorstack_data(self, start, end):
"""Reorder editorstack.data so it is synchronized with the tab bar when
tabs are moved."""
if start < 0 or end < 0:
return
else:
steps = abs(end - start)
direction = (end-start) // steps # +1 for rig... | python | def move_editorstack_data(self, start, end):
"""Reorder editorstack.data so it is synchronized with the tab bar when
tabs are moved."""
if start < 0 or end < 0:
return
else:
steps = abs(end - start)
direction = (end-start) // steps # +1 for rig... | [
"def",
"move_editorstack_data",
"(",
"self",
",",
"start",
",",
"end",
")",
":",
"if",
"start",
"<",
"0",
"or",
"end",
"<",
"0",
":",
"return",
"else",
":",
"steps",
"=",
"abs",
"(",
"end",
"-",
"start",
")",
"direction",
"=",
"(",
"end",
"-",
"s... | Reorder editorstack.data so it is synchronized with the tab bar when
tabs are moved. | [
"Reorder",
"editorstack",
".",
"data",
"so",
"it",
"is",
"synchronized",
"with",
"the",
"tab",
"bar",
"when",
"tabs",
"are",
"moved",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1422-L1438 |
30,726 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.poll_open_file_languages | def poll_open_file_languages(self):
"""Get list of current opened files' languages"""
languages = []
for index in range(self.get_stack_count()):
languages.append(
self.tabs.widget(index).language.lower())
return set(languages) | python | def poll_open_file_languages(self):
"""Get list of current opened files' languages"""
languages = []
for index in range(self.get_stack_count()):
languages.append(
self.tabs.widget(index).language.lower())
return set(languages) | [
"def",
"poll_open_file_languages",
"(",
"self",
")",
":",
"languages",
"=",
"[",
"]",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"get_stack_count",
"(",
")",
")",
":",
"languages",
".",
"append",
"(",
"self",
".",
"tabs",
".",
"widget",
"(",
"ind... | Get list of current opened files' languages | [
"Get",
"list",
"of",
"current",
"opened",
"files",
"languages"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1504-L1510 |
30,727 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.notify_server_ready | def notify_server_ready(self, language, config):
"""Notify language server availability to code editors."""
for index in range(self.get_stack_count()):
editor = self.tabs.widget(index)
if editor.language.lower() == language:
editor.start_lsp_services(config) | python | def notify_server_ready(self, language, config):
"""Notify language server availability to code editors."""
for index in range(self.get_stack_count()):
editor = self.tabs.widget(index)
if editor.language.lower() == language:
editor.start_lsp_services(config) | [
"def",
"notify_server_ready",
"(",
"self",
",",
"language",
",",
"config",
")",
":",
"for",
"index",
"in",
"range",
"(",
"self",
".",
"get_stack_count",
"(",
")",
")",
":",
"editor",
"=",
"self",
".",
"tabs",
".",
"widget",
"(",
"index",
")",
"if",
"... | Notify language server availability to code editors. | [
"Notify",
"language",
"server",
"availability",
"to",
"code",
"editors",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1512-L1517 |
30,728 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.close_all_right | def close_all_right(self):
""" Close all files opened to the right """
num = self.get_stack_index()
n = self.get_stack_count()
for i in range(num, n-1):
self.close_file(num+1) | python | def close_all_right(self):
""" Close all files opened to the right """
num = self.get_stack_index()
n = self.get_stack_count()
for i in range(num, n-1):
self.close_file(num+1) | [
"def",
"close_all_right",
"(",
"self",
")",
":",
"num",
"=",
"self",
".",
"get_stack_index",
"(",
")",
"n",
"=",
"self",
".",
"get_stack_count",
"(",
")",
"for",
"i",
"in",
"range",
"(",
"num",
",",
"n",
"-",
"1",
")",
":",
"self",
".",
"close_file... | Close all files opened to the right | [
"Close",
"all",
"files",
"opened",
"to",
"the",
"right"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1524-L1529 |
30,729 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.close_all_but_this | def close_all_but_this(self):
"""Close all files but the current one"""
self.close_all_right()
for i in range(0, self.get_stack_count()-1 ):
self.close_file(0) | python | def close_all_but_this(self):
"""Close all files but the current one"""
self.close_all_right()
for i in range(0, self.get_stack_count()-1 ):
self.close_file(0) | [
"def",
"close_all_but_this",
"(",
"self",
")",
":",
"self",
".",
"close_all_right",
"(",
")",
"for",
"i",
"in",
"range",
"(",
"0",
",",
"self",
".",
"get_stack_count",
"(",
")",
"-",
"1",
")",
":",
"self",
".",
"close_file",
"(",
"0",
")"
] | Close all files but the current one | [
"Close",
"all",
"files",
"but",
"the",
"current",
"one"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1531-L1535 |
30,730 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.sort_file_tabs_alphabetically | def sort_file_tabs_alphabetically(self):
"""Sort open tabs alphabetically."""
while self.sorted() is False:
for i in range(0, self.tabs.tabBar().count()):
if(self.tabs.tabBar().tabText(i) >
self.tabs.tabBar().tabText(i + 1)):
... | python | def sort_file_tabs_alphabetically(self):
"""Sort open tabs alphabetically."""
while self.sorted() is False:
for i in range(0, self.tabs.tabBar().count()):
if(self.tabs.tabBar().tabText(i) >
self.tabs.tabBar().tabText(i + 1)):
... | [
"def",
"sort_file_tabs_alphabetically",
"(",
"self",
")",
":",
"while",
"self",
".",
"sorted",
"(",
")",
"is",
"False",
":",
"for",
"i",
"in",
"range",
"(",
"0",
",",
"self",
".",
"tabs",
".",
"tabBar",
"(",
")",
".",
"count",
"(",
")",
")",
":",
... | Sort open tabs alphabetically. | [
"Sort",
"open",
"tabs",
"alphabetically",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1537-L1543 |
30,731 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.add_last_closed_file | def add_last_closed_file(self, fname):
"""Add to last closed file list."""
if fname in self.last_closed_files:
self.last_closed_files.remove(fname)
self.last_closed_files.insert(0, fname)
if len(self.last_closed_files) > 10:
self.last_closed_files.pop(-1) | python | def add_last_closed_file(self, fname):
"""Add to last closed file list."""
if fname in self.last_closed_files:
self.last_closed_files.remove(fname)
self.last_closed_files.insert(0, fname)
if len(self.last_closed_files) > 10:
self.last_closed_files.pop(-1) | [
"def",
"add_last_closed_file",
"(",
"self",
",",
"fname",
")",
":",
"if",
"fname",
"in",
"self",
".",
"last_closed_files",
":",
"self",
".",
"last_closed_files",
".",
"remove",
"(",
"fname",
")",
"self",
".",
"last_closed_files",
".",
"insert",
"(",
"0",
"... | Add to last closed file list. | [
"Add",
"to",
"last",
"closed",
"file",
"list",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1553-L1559 |
30,732 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.file_saved_in_other_editorstack | def file_saved_in_other_editorstack(self, original_filename, filename):
"""
File was just saved in another editorstack, let's synchronize!
This avoids file being automatically reloaded.
The original filename is passed instead of an index in case the tabs
on the editor stac... | python | def file_saved_in_other_editorstack(self, original_filename, filename):
"""
File was just saved in another editorstack, let's synchronize!
This avoids file being automatically reloaded.
The original filename is passed instead of an index in case the tabs
on the editor stac... | [
"def",
"file_saved_in_other_editorstack",
"(",
"self",
",",
"original_filename",
",",
"filename",
")",
":",
"index",
"=",
"self",
".",
"has_filename",
"(",
"original_filename",
")",
"if",
"index",
"is",
"None",
":",
"return",
"finfo",
"=",
"self",
".",
"data",... | File was just saved in another editorstack, let's synchronize!
This avoids file being automatically reloaded.
The original filename is passed instead of an index in case the tabs
on the editor stacks were moved and are now in a different order - see
issue 5703.
Filename is... | [
"File",
"was",
"just",
"saved",
"in",
"another",
"editorstack",
"let",
"s",
"synchronize!",
"This",
"avoids",
"file",
"being",
"automatically",
"reloaded",
".",
"The",
"original",
"filename",
"is",
"passed",
"instead",
"of",
"an",
"index",
"in",
"case",
"the",... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1734-L1750 |
30,733 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.analyze_script | def analyze_script(self, index=None):
"""Analyze current script with todos"""
if self.is_analysis_done:
return
if index is None:
index = self.get_stack_index()
if self.data:
finfo = self.data[index]
if self.todolist_enabled:
... | python | def analyze_script(self, index=None):
"""Analyze current script with todos"""
if self.is_analysis_done:
return
if index is None:
index = self.get_stack_index()
if self.data:
finfo = self.data[index]
if self.todolist_enabled:
... | [
"def",
"analyze_script",
"(",
"self",
",",
"index",
"=",
"None",
")",
":",
"if",
"self",
".",
"is_analysis_done",
":",
"return",
"if",
"index",
"is",
"None",
":",
"index",
"=",
"self",
".",
"get_stack_index",
"(",
")",
"if",
"self",
".",
"data",
":",
... | Analyze current script with todos | [
"Analyze",
"current",
"script",
"with",
"todos"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1910-L1920 |
30,734 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.set_todo_results | def set_todo_results(self, filename, todo_results):
"""Synchronize todo results between editorstacks"""
index = self.has_filename(filename)
if index is None:
return
self.data[index].set_todo_results(todo_results) | python | def set_todo_results(self, filename, todo_results):
"""Synchronize todo results between editorstacks"""
index = self.has_filename(filename)
if index is None:
return
self.data[index].set_todo_results(todo_results) | [
"def",
"set_todo_results",
"(",
"self",
",",
"filename",
",",
"todo_results",
")",
":",
"index",
"=",
"self",
".",
"has_filename",
"(",
"filename",
")",
"if",
"index",
"is",
"None",
":",
"return",
"self",
".",
"data",
"[",
"index",
"]",
".",
"set_todo_re... | Synchronize todo results between editorstacks | [
"Synchronize",
"todo",
"results",
"between",
"editorstacks"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1922-L1927 |
30,735 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.current_changed | def current_changed(self, index):
"""Stack index has changed"""
# count = self.get_stack_count()
# for btn in (self.filelist_btn, self.previous_btn, self.next_btn):
# btn.setEnabled(count > 1)
editor = self.get_current_editor()
if editor.lsp_ready and not editor.... | python | def current_changed(self, index):
"""Stack index has changed"""
# count = self.get_stack_count()
# for btn in (self.filelist_btn, self.previous_btn, self.next_btn):
# btn.setEnabled(count > 1)
editor = self.get_current_editor()
if editor.lsp_ready and not editor.... | [
"def",
"current_changed",
"(",
"self",
",",
"index",
")",
":",
"# count = self.get_stack_count()\r",
"# for btn in (self.filelist_btn, self.previous_btn, self.next_btn):\r",
"# btn.setEnabled(count > 1)\r",
"editor",
"=",
"self",
".",
"get_current_editor",
"(... | Stack index has changed | [
"Stack",
"index",
"has",
"changed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1933-L1969 |
30,736 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.focus_changed | def focus_changed(self):
"""Editor focus has changed"""
fwidget = QApplication.focusWidget()
for finfo in self.data:
if fwidget is finfo.editor:
self.refresh()
self.editor_focus_changed.emit() | python | def focus_changed(self):
"""Editor focus has changed"""
fwidget = QApplication.focusWidget()
for finfo in self.data:
if fwidget is finfo.editor:
self.refresh()
self.editor_focus_changed.emit() | [
"def",
"focus_changed",
"(",
"self",
")",
":",
"fwidget",
"=",
"QApplication",
".",
"focusWidget",
"(",
")",
"for",
"finfo",
"in",
"self",
".",
"data",
":",
"if",
"fwidget",
"is",
"finfo",
".",
"editor",
":",
"self",
".",
"refresh",
"(",
")",
"self",
... | Editor focus has changed | [
"Editor",
"focus",
"has",
"changed"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L1995-L2001 |
30,737 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack._refresh_outlineexplorer | def _refresh_outlineexplorer(self, index=None, update=True, clear=False):
"""Refresh outline explorer panel"""
oe = self.outlineexplorer
if oe is None:
return
if index is None:
index = self.get_stack_index()
if self.data:
finfo = self.d... | python | def _refresh_outlineexplorer(self, index=None, update=True, clear=False):
"""Refresh outline explorer panel"""
oe = self.outlineexplorer
if oe is None:
return
if index is None:
index = self.get_stack_index()
if self.data:
finfo = self.d... | [
"def",
"_refresh_outlineexplorer",
"(",
"self",
",",
"index",
"=",
"None",
",",
"update",
"=",
"True",
",",
"clear",
"=",
"False",
")",
":",
"oe",
"=",
"self",
".",
"outlineexplorer",
"if",
"oe",
"is",
"None",
":",
"return",
"if",
"index",
"is",
"None"... | Refresh outline explorer panel | [
"Refresh",
"outline",
"explorer",
"panel"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2003-L2026 |
30,738 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack._sync_outlineexplorer_file_order | def _sync_outlineexplorer_file_order(self):
"""
Order the root file items of the outline explorer as in the tabbar
of the current EditorStack.
"""
if self.outlineexplorer is not None:
self.outlineexplorer.treewidget.set_editor_ids_order(
[finfo.... | python | def _sync_outlineexplorer_file_order(self):
"""
Order the root file items of the outline explorer as in the tabbar
of the current EditorStack.
"""
if self.outlineexplorer is not None:
self.outlineexplorer.treewidget.set_editor_ids_order(
[finfo.... | [
"def",
"_sync_outlineexplorer_file_order",
"(",
"self",
")",
":",
"if",
"self",
".",
"outlineexplorer",
"is",
"not",
"None",
":",
"self",
".",
"outlineexplorer",
".",
"treewidget",
".",
"set_editor_ids_order",
"(",
"[",
"finfo",
".",
"editor",
".",
"get_document... | Order the root file items of the outline explorer as in the tabbar
of the current EditorStack. | [
"Order",
"the",
"root",
"file",
"items",
"of",
"the",
"outline",
"explorer",
"as",
"in",
"the",
"tabbar",
"of",
"the",
"current",
"EditorStack",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2028-L2035 |
30,739 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.__refresh_statusbar | def __refresh_statusbar(self, index):
"""Refreshing statusbar widgets"""
finfo = self.data[index]
self.encoding_changed.emit(finfo.encoding)
# Refresh cursor position status:
line, index = finfo.editor.get_cursor_line_column()
self.sig_editor_cursor_position_changed... | python | def __refresh_statusbar(self, index):
"""Refreshing statusbar widgets"""
finfo = self.data[index]
self.encoding_changed.emit(finfo.encoding)
# Refresh cursor position status:
line, index = finfo.editor.get_cursor_line_column()
self.sig_editor_cursor_position_changed... | [
"def",
"__refresh_statusbar",
"(",
"self",
",",
"index",
")",
":",
"finfo",
"=",
"self",
".",
"data",
"[",
"index",
"]",
"self",
".",
"encoding_changed",
".",
"emit",
"(",
"finfo",
".",
"encoding",
")",
"# Refresh cursor position status:\r",
"line",
",",
"in... | Refreshing statusbar widgets | [
"Refreshing",
"statusbar",
"widgets"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2037-L2043 |
30,740 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.reload | def reload(self, index):
"""Reload file from disk"""
finfo = self.data[index]
txt, finfo.encoding = encoding.read(finfo.filename)
finfo.lastmodified = QFileInfo(finfo.filename).lastModified()
position = finfo.editor.get_position('cursor')
finfo.editor.set_text(txt)
... | python | def reload(self, index):
"""Reload file from disk"""
finfo = self.data[index]
txt, finfo.encoding = encoding.read(finfo.filename)
finfo.lastmodified = QFileInfo(finfo.filename).lastModified()
position = finfo.editor.get_position('cursor')
finfo.editor.set_text(txt)
... | [
"def",
"reload",
"(",
"self",
",",
"index",
")",
":",
"finfo",
"=",
"self",
".",
"data",
"[",
"index",
"]",
"txt",
",",
"finfo",
".",
"encoding",
"=",
"encoding",
".",
"read",
"(",
"finfo",
".",
"filename",
")",
"finfo",
".",
"lastmodified",
"=",
"... | Reload file from disk | [
"Reload",
"file",
"from",
"disk"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2181-L2199 |
30,741 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.revert | def revert(self):
"""Revert file from disk"""
index = self.get_stack_index()
finfo = self.data[index]
filename = finfo.filename
if finfo.editor.document().isModified():
self.msgbox = QMessageBox(
QMessageBox.Warning,
sel... | python | def revert(self):
"""Revert file from disk"""
index = self.get_stack_index()
finfo = self.data[index]
filename = finfo.filename
if finfo.editor.document().isModified():
self.msgbox = QMessageBox(
QMessageBox.Warning,
sel... | [
"def",
"revert",
"(",
"self",
")",
":",
"index",
"=",
"self",
".",
"get_stack_index",
"(",
")",
"finfo",
"=",
"self",
".",
"data",
"[",
"index",
"]",
"filename",
"=",
"finfo",
".",
"filename",
"if",
"finfo",
".",
"editor",
".",
"document",
"(",
")",
... | Revert file from disk | [
"Revert",
"file",
"from",
"disk"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2201-L2218 |
30,742 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.remove_trailing_spaces | def remove_trailing_spaces(self, index=None):
"""Remove trailing spaces"""
if index is None:
index = self.get_stack_index()
finfo = self.data[index]
finfo.editor.remove_trailing_spaces() | python | def remove_trailing_spaces(self, index=None):
"""Remove trailing spaces"""
if index is None:
index = self.get_stack_index()
finfo = self.data[index]
finfo.editor.remove_trailing_spaces() | [
"def",
"remove_trailing_spaces",
"(",
"self",
",",
"index",
"=",
"None",
")",
":",
"if",
"index",
"is",
"None",
":",
"index",
"=",
"self",
".",
"get_stack_index",
"(",
")",
"finfo",
"=",
"self",
".",
"data",
"[",
"index",
"]",
"finfo",
".",
"editor",
... | Remove trailing spaces | [
"Remove",
"trailing",
"spaces"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2403-L2408 |
30,743 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.fix_indentation | def fix_indentation(self, index=None):
"""Replace tab characters by spaces"""
if index is None:
index = self.get_stack_index()
finfo = self.data[index]
finfo.editor.fix_indentation() | python | def fix_indentation(self, index=None):
"""Replace tab characters by spaces"""
if index is None:
index = self.get_stack_index()
finfo = self.data[index]
finfo.editor.fix_indentation() | [
"def",
"fix_indentation",
"(",
"self",
",",
"index",
"=",
"None",
")",
":",
"if",
"index",
"is",
"None",
":",
"index",
"=",
"self",
".",
"get_stack_index",
"(",
")",
"finfo",
"=",
"self",
".",
"data",
"[",
"index",
"]",
"finfo",
".",
"editor",
".",
... | Replace tab characters by spaces | [
"Replace",
"tab",
"characters",
"by",
"spaces"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2410-L2415 |
30,744 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.run_selection | def run_selection(self):
"""
Run selected text or current line in console.
If some text is selected, then execute that text in console.
If no text is selected, then execute current line, unless current line
is empty. Then, advance cursor to next line. If cursor is on las... | python | def run_selection(self):
"""
Run selected text or current line in console.
If some text is selected, then execute that text in console.
If no text is selected, then execute current line, unless current line
is empty. Then, advance cursor to next line. If cursor is on las... | [
"def",
"run_selection",
"(",
"self",
")",
":",
"text",
"=",
"self",
".",
"get_current_editor",
"(",
")",
".",
"get_selection_as_executable_code",
"(",
")",
"if",
"text",
":",
"self",
".",
"exec_in_extconsole",
".",
"emit",
"(",
"text",
".",
"rstrip",
"(",
... | Run selected text or current line in console.
If some text is selected, then execute that text in console.
If no text is selected, then execute current line, unless current line
is empty. Then, advance cursor to next line. If cursor is on last line
and that line is not empty, the... | [
"Run",
"selected",
"text",
"or",
"current",
"line",
"in",
"console",
".",
"If",
"some",
"text",
"is",
"selected",
"then",
"execute",
"that",
"text",
"in",
"console",
".",
"If",
"no",
"text",
"is",
"selected",
"then",
"execute",
"current",
"line",
"unless",... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2418-L2441 |
30,745 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.run_cell | def run_cell(self):
"""Run current cell."""
text, line = self.get_current_editor().get_cell_as_executable_code()
self._run_cell_text(text, line) | python | def run_cell(self):
"""Run current cell."""
text, line = self.get_current_editor().get_cell_as_executable_code()
self._run_cell_text(text, line) | [
"def",
"run_cell",
"(",
"self",
")",
":",
"text",
",",
"line",
"=",
"self",
".",
"get_current_editor",
"(",
")",
".",
"get_cell_as_executable_code",
"(",
")",
"self",
".",
"_run_cell_text",
"(",
"text",
",",
"line",
")"
] | Run current cell. | [
"Run",
"current",
"cell",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2443-L2446 |
30,746 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorStack.re_run_last_cell | def re_run_last_cell(self):
"""Run the previous cell again."""
text, line = (self.get_current_editor()
.get_last_cell_as_executable_code())
self._run_cell_text(text, line) | python | def re_run_last_cell(self):
"""Run the previous cell again."""
text, line = (self.get_current_editor()
.get_last_cell_as_executable_code())
self._run_cell_text(text, line) | [
"def",
"re_run_last_cell",
"(",
"self",
")",
":",
"text",
",",
"line",
"=",
"(",
"self",
".",
"get_current_editor",
"(",
")",
".",
"get_last_cell_as_executable_code",
"(",
")",
")",
"self",
".",
"_run_cell_text",
"(",
"text",
",",
"line",
")"
] | Run the previous cell again. | [
"Run",
"the",
"previous",
"cell",
"again",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2473-L2477 |
30,747 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorSplitter.split | def split(self, orientation=Qt.Vertical):
"""Create and attach a new EditorSplitter to the current EditorSplitter.
The new EditorSplitter widget will contain an EditorStack that
is a clone of the current EditorStack.
A single EditorSplitter instance can be split multiple times, b... | python | def split(self, orientation=Qt.Vertical):
"""Create and attach a new EditorSplitter to the current EditorSplitter.
The new EditorSplitter widget will contain an EditorStack that
is a clone of the current EditorStack.
A single EditorSplitter instance can be split multiple times, b... | [
"def",
"split",
"(",
"self",
",",
"orientation",
"=",
"Qt",
".",
"Vertical",
")",
":",
"self",
".",
"setOrientation",
"(",
"orientation",
")",
"self",
".",
"editorstack",
".",
"set_orientation",
"(",
"orientation",
")",
"editorsplitter",
"=",
"EditorSplitter",... | Create and attach a new EditorSplitter to the current EditorSplitter.
The new EditorSplitter widget will contain an EditorStack that
is a clone of the current EditorStack.
A single EditorSplitter instance can be split multiple times, but the
orientation will be the same for all t... | [
"Create",
"and",
"attach",
"a",
"new",
"EditorSplitter",
"to",
"the",
"current",
"EditorSplitter",
".",
"The",
"new",
"EditorSplitter",
"widget",
"will",
"contain",
"an",
"EditorStack",
"that",
"is",
"a",
"clone",
"of",
"the",
"current",
"EditorStack",
".",
"A... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2655-L2676 |
30,748 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorMainWindow.add_toolbars_to_menu | def add_toolbars_to_menu(self, menu_title, actions):
"""Add toolbars to a menu."""
# Six is the position of the view menu in menus list
# that you can find in plugins/editor.py setup_other_windows.
view_menu = self.menus[6]
if actions == self.toolbars and view_menu:
... | python | def add_toolbars_to_menu(self, menu_title, actions):
"""Add toolbars to a menu."""
# Six is the position of the view menu in menus list
# that you can find in plugins/editor.py setup_other_windows.
view_menu = self.menus[6]
if actions == self.toolbars and view_menu:
... | [
"def",
"add_toolbars_to_menu",
"(",
"self",
",",
"menu_title",
",",
"actions",
")",
":",
"# Six is the position of the view menu in menus list\r",
"# that you can find in plugins/editor.py setup_other_windows.\r",
"view_menu",
"=",
"self",
".",
"menus",
"[",
"6",
"]",
"if",
... | Add toolbars to a menu. | [
"Add",
"toolbars",
"to",
"a",
"menu",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2928-L2938 |
30,749 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorMainWindow.get_layout_settings | def get_layout_settings(self):
"""Return layout state"""
splitsettings = self.editorwidget.editorsplitter.get_layout_settings()
return dict(size=(self.window_size.width(), self.window_size.height()),
pos=(self.pos().x(), self.pos().y()),
is_maximized=... | python | def get_layout_settings(self):
"""Return layout state"""
splitsettings = self.editorwidget.editorsplitter.get_layout_settings()
return dict(size=(self.window_size.width(), self.window_size.height()),
pos=(self.pos().x(), self.pos().y()),
is_maximized=... | [
"def",
"get_layout_settings",
"(",
"self",
")",
":",
"splitsettings",
"=",
"self",
".",
"editorwidget",
".",
"editorsplitter",
".",
"get_layout_settings",
"(",
")",
"return",
"dict",
"(",
"size",
"=",
"(",
"self",
".",
"window_size",
".",
"width",
"(",
")",
... | Return layout state | [
"Return",
"layout",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2970-L2978 |
30,750 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorMainWindow.set_layout_settings | def set_layout_settings(self, settings):
"""Restore layout state"""
size = settings.get('size')
if size is not None:
self.resize( QSize(*size) )
self.window_size = self.size()
pos = settings.get('pos')
if pos is not None:
self.move( QPo... | python | def set_layout_settings(self, settings):
"""Restore layout state"""
size = settings.get('size')
if size is not None:
self.resize( QSize(*size) )
self.window_size = self.size()
pos = settings.get('pos')
if pos is not None:
self.move( QPo... | [
"def",
"set_layout_settings",
"(",
"self",
",",
"settings",
")",
":",
"size",
"=",
"settings",
".",
"get",
"(",
"'size'",
")",
"if",
"size",
"is",
"not",
"None",
":",
"self",
".",
"resize",
"(",
"QSize",
"(",
"*",
"size",
")",
")",
"self",
".",
"wi... | Restore layout state | [
"Restore",
"layout",
"state"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L2980-L2999 |
30,751 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorPluginExample.file_saved_in_editorstack | def file_saved_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was saved in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_id_str:
editor... | python | def file_saved_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was saved in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_id_str:
editor... | [
"def",
"file_saved_in_editorstack",
"(",
"self",
",",
"editorstack_id_str",
",",
"original_filename",
",",
"filename",
")",
":",
"for",
"editorstack",
"in",
"self",
".",
"editorstacks",
":",
"if",
"str",
"(",
"id",
"(",
"editorstack",
")",
")",
"!=",
"editorst... | A file was saved in editorstack, this notifies others | [
"A",
"file",
"was",
"saved",
"in",
"editorstack",
"this",
"notifies",
"others"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L3131-L3137 |
30,752 | spyder-ide/spyder | spyder/plugins/editor/widgets/editor.py | EditorPluginExample.file_renamed_in_data_in_editorstack | def file_renamed_in_data_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was renamed in data in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_i... | python | def file_renamed_in_data_in_editorstack(self, editorstack_id_str,
original_filename, filename):
"""A file was renamed in data in editorstack, this notifies others"""
for editorstack in self.editorstacks:
if str(id(editorstack)) != editorstack_i... | [
"def",
"file_renamed_in_data_in_editorstack",
"(",
"self",
",",
"editorstack_id_str",
",",
"original_filename",
",",
"filename",
")",
":",
"for",
"editorstack",
"in",
"self",
".",
"editorstacks",
":",
"if",
"str",
"(",
"id",
"(",
"editorstack",
")",
")",
"!=",
... | A file was renamed in data in editorstack, this notifies others | [
"A",
"file",
"was",
"renamed",
"in",
"data",
"in",
"editorstack",
"this",
"notifies",
"others"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/widgets/editor.py#L3142-L3147 |
30,753 | spyder-ide/spyder | spyder/plugins/findinfiles/plugin.py | FindInFiles.findinfiles_callback | def findinfiles_callback(self):
"""Find in files callback"""
widget = QApplication.focusWidget()
if not self.ismaximized:
self.dockwidget.setVisible(True)
self.dockwidget.raise_()
text = ''
try:
if widget.has_selected_text():
... | python | def findinfiles_callback(self):
"""Find in files callback"""
widget = QApplication.focusWidget()
if not self.ismaximized:
self.dockwidget.setVisible(True)
self.dockwidget.raise_()
text = ''
try:
if widget.has_selected_text():
... | [
"def",
"findinfiles_callback",
"(",
"self",
")",
":",
"widget",
"=",
"QApplication",
".",
"focusWidget",
"(",
")",
"if",
"not",
"self",
".",
"ismaximized",
":",
"self",
".",
"dockwidget",
".",
"setVisible",
"(",
"True",
")",
"self",
".",
"dockwidget",
".",... | Find in files callback | [
"Find",
"in",
"files",
"callback"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/findinfiles/plugin.py#L98-L113 |
30,754 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._draw_fold_region_background | def _draw_fold_region_background(self, block, painter):
"""
Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter
"""
r = FoldScope(block)
th = TextH... | python | def _draw_fold_region_background(self, block, painter):
"""
Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter
"""
r = FoldScope(block)
th = TextH... | [
"def",
"_draw_fold_region_background",
"(",
"self",
",",
"block",
",",
"painter",
")",
":",
"r",
"=",
"FoldScope",
"(",
"block",
")",
"th",
"=",
"TextHelper",
"(",
"self",
".",
"editor",
")",
"start",
",",
"end",
"=",
"r",
".",
"get_range",
"(",
"ignor... | Draw the fold region when the mouse is over and non collapsed
indicator.
:param top: Top position
:param block: Current block.
:param painter: QPainter | [
"Draw",
"the",
"fold",
"region",
"when",
"the",
"mouse",
"is",
"over",
"and",
"non",
"collapsed",
"indicator",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L226-L247 |
30,755 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._draw_rect | def _draw_rect(self, rect, painter):
"""
Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter.
"""
c = self.editor.sideareas_color
grad = QLinearGradient(rect.topLeft(... | python | def _draw_rect(self, rect, painter):
"""
Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter.
"""
c = self.editor.sideareas_color
grad = QLinearGradient(rect.topLeft(... | [
"def",
"_draw_rect",
"(",
"self",
",",
"rect",
",",
"painter",
")",
":",
"c",
"=",
"self",
".",
"editor",
".",
"sideareas_color",
"grad",
"=",
"QLinearGradient",
"(",
"rect",
".",
"topLeft",
"(",
")",
",",
"rect",
".",
"topRight",
"(",
")",
")",
"if"... | Draw the background rectangle using the current style primitive color.
:param rect: The fold zone rect to draw
:param painter: The widget's painter. | [
"Draw",
"the",
"background",
"rectangle",
"using",
"the",
"current",
"style",
"primitive",
"color",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L249-L285 |
30,756 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.find_parent_scope | def find_parent_scope(block):
"""Find parent scope, if the block is not a fold trigger."""
original = block
if not TextBlockHelper.is_fold_trigger(block):
# search level of next non blank line
while block.text().strip() == '' and block.isValid():
block = b... | python | def find_parent_scope(block):
"""Find parent scope, if the block is not a fold trigger."""
original = block
if not TextBlockHelper.is_fold_trigger(block):
# search level of next non blank line
while block.text().strip() == '' and block.isValid():
block = b... | [
"def",
"find_parent_scope",
"(",
"block",
")",
":",
"original",
"=",
"block",
"if",
"not",
"TextBlockHelper",
".",
"is_fold_trigger",
"(",
"block",
")",
":",
"# search level of next non blank line",
"while",
"block",
".",
"text",
"(",
")",
".",
"strip",
"(",
"... | Find parent scope, if the block is not a fold trigger. | [
"Find",
"parent",
"scope",
"if",
"the",
"block",
"is",
"not",
"a",
"fold",
"trigger",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L325-L338 |
30,757 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._decorate_block | def _decorate_block(self, start, end):
"""
Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration
"""
color = self._get_scope_highlight_color()
draw_order = DRAW_ORDERS.get... | python | def _decorate_block(self, start, end):
"""
Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration
"""
color = self._get_scope_highlight_color()
draw_order = DRAW_ORDERS.get... | [
"def",
"_decorate_block",
"(",
"self",
",",
"start",
",",
"end",
")",
":",
"color",
"=",
"self",
".",
"_get_scope_highlight_color",
"(",
")",
"draw_order",
"=",
"DRAW_ORDERS",
".",
"get",
"(",
"'codefolding'",
")",
"d",
"=",
"TextDecoration",
"(",
"self",
... | Create a decoration and add it to the editor.
Args:
start (int) start line of the decoration
end (int) end line of the decoration | [
"Create",
"a",
"decoration",
"and",
"add",
"it",
"to",
"the",
"editor",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L361-L376 |
30,758 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._highlight_block | def _highlight_block(self, block):
"""
Highlights the current fold scope.
:param block: Block that starts the current fold scope.
"""
scope = FoldScope(block)
if (self._current_scope is None or
self._current_scope.get_range() != scope.get_range()):
... | python | def _highlight_block(self, block):
"""
Highlights the current fold scope.
:param block: Block that starts the current fold scope.
"""
scope = FoldScope(block)
if (self._current_scope is None or
self._current_scope.get_range() != scope.get_range()):
... | [
"def",
"_highlight_block",
"(",
"self",
",",
"block",
")",
":",
"scope",
"=",
"FoldScope",
"(",
"block",
")",
"if",
"(",
"self",
".",
"_current_scope",
"is",
"None",
"or",
"self",
".",
"_current_scope",
".",
"get_range",
"(",
")",
"!=",
"scope",
".",
"... | Highlights the current fold scope.
:param block: Block that starts the current fold scope. | [
"Highlights",
"the",
"current",
"fold",
"scope",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L378-L392 |
30,759 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._show_previous_blank_lines | def _show_previous_blank_lines(block):
"""
Show the block previous blank lines
"""
# set previous blank lines visibles
pblock = block.previous()
while (pblock.text().strip() == '' and
pblock.blockNumber() >= 0):
pblock.setVisible(True)
... | python | def _show_previous_blank_lines(block):
"""
Show the block previous blank lines
"""
# set previous blank lines visibles
pblock = block.previous()
while (pblock.text().strip() == '' and
pblock.blockNumber() >= 0):
pblock.setVisible(True)
... | [
"def",
"_show_previous_blank_lines",
"(",
"block",
")",
":",
"# set previous blank lines visibles",
"pblock",
"=",
"block",
".",
"previous",
"(",
")",
"while",
"(",
"pblock",
".",
"text",
"(",
")",
".",
"strip",
"(",
")",
"==",
"''",
"and",
"pblock",
".",
... | Show the block previous blank lines | [
"Show",
"the",
"block",
"previous",
"blank",
"lines"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L552-L561 |
30,760 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.refresh_decorations | def refresh_decorations(self, force=False):
"""
Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style.
"""
cursor = self.editor.textCursor()
if (... | python | def refresh_decorations(self, force=False):
"""
Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style.
"""
cursor = self.editor.textCursor()
if (... | [
"def",
"refresh_decorations",
"(",
"self",
",",
"force",
"=",
"False",
")",
":",
"cursor",
"=",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
"if",
"(",
"self",
".",
"_prev_cursor",
"is",
"None",
"or",
"force",
"or",
"self",
".",
"_prev_cursor",
... | Refresh decorations colors. This function is called by the syntax
highlighter when the style changed so that we may update our
decorations colors according to the new style. | [
"Refresh",
"decorations",
"colors",
".",
"This",
"function",
"is",
"called",
"by",
"the",
"syntax",
"highlighter",
"when",
"the",
"style",
"changed",
"so",
"that",
"we",
"may",
"update",
"our",
"decorations",
"colors",
"according",
"to",
"the",
"new",
"style",... | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L563-L579 |
30,761 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._refresh_editor_and_scrollbars | def _refresh_editor_and_scrollbars(self):
"""
Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, the... | python | def _refresh_editor_and_scrollbars(self):
"""
Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, the... | [
"def",
"_refresh_editor_and_scrollbars",
"(",
"self",
")",
":",
"TextHelper",
"(",
"self",
".",
"editor",
")",
".",
"mark_whole_doc_dirty",
"(",
")",
"self",
".",
"editor",
".",
"repaint",
"(",
")",
"s",
"=",
"self",
".",
"editor",
".",
"size",
"(",
")",... | Refrehes editor content and scollbars.
We generate a fake resize event to refresh scroll bar.
We have the same problem as described here:
http://www.qtcentre.org/threads/44803 and we apply the same solution
(don't worry, there is no visual effect, the editor does not grow up
at... | [
"Refrehes",
"editor",
"content",
"and",
"scollbars",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L581-L596 |
30,762 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.collapse_all | def collapse_all(self):
"""
Collapses all triggers and makes all blocks with fold level > 0
invisible.
"""
self._clear_block_deco()
block = self.editor.document().firstBlock()
last = self.editor.document().lastBlock()
while block.isValid():
lvl... | python | def collapse_all(self):
"""
Collapses all triggers and makes all blocks with fold level > 0
invisible.
"""
self._clear_block_deco()
block = self.editor.document().firstBlock()
last = self.editor.document().lastBlock()
while block.isValid():
lvl... | [
"def",
"collapse_all",
"(",
"self",
")",
":",
"self",
".",
"_clear_block_deco",
"(",
")",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"firstBlock",
"(",
")",
"last",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",... | Collapses all triggers and makes all blocks with fold level > 0
invisible. | [
"Collapses",
"all",
"triggers",
"and",
"makes",
"all",
"blocks",
"with",
"fold",
"level",
">",
"0",
"invisible",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L598-L622 |
30,763 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._clear_block_deco | def _clear_block_deco(self):
"""Clear the folded block decorations."""
for deco in self._block_decos:
self.editor.decorations.remove(deco)
self._block_decos[:] = [] | python | def _clear_block_deco(self):
"""Clear the folded block decorations."""
for deco in self._block_decos:
self.editor.decorations.remove(deco)
self._block_decos[:] = [] | [
"def",
"_clear_block_deco",
"(",
"self",
")",
":",
"for",
"deco",
"in",
"self",
".",
"_block_decos",
":",
"self",
".",
"editor",
".",
"decorations",
".",
"remove",
"(",
"deco",
")",
"self",
".",
"_block_decos",
"[",
":",
"]",
"=",
"[",
"]"
] | Clear the folded block decorations. | [
"Clear",
"the",
"folded",
"block",
"decorations",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L624-L628 |
30,764 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel.expand_all | def expand_all(self):
"""Expands all fold triggers."""
block = self.editor.document().firstBlock()
while block.isValid():
TextBlockHelper.set_collapsed(block, False)
block.setVisible(True)
block = block.next()
self._clear_block_deco()
self._ref... | python | def expand_all(self):
"""Expands all fold triggers."""
block = self.editor.document().firstBlock()
while block.isValid():
TextBlockHelper.set_collapsed(block, False)
block.setVisible(True)
block = block.next()
self._clear_block_deco()
self._ref... | [
"def",
"expand_all",
"(",
"self",
")",
":",
"block",
"=",
"self",
".",
"editor",
".",
"document",
"(",
")",
".",
"firstBlock",
"(",
")",
"while",
"block",
".",
"isValid",
"(",
")",
":",
"TextBlockHelper",
".",
"set_collapsed",
"(",
"block",
",",
"False... | Expands all fold triggers. | [
"Expands",
"all",
"fold",
"triggers",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L630-L639 |
30,765 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._on_action_toggle | def _on_action_toggle(self):
"""Toggle the current fold trigger."""
block = FoldScope.find_parent_scope(self.editor.textCursor().block())
self.toggle_fold_trigger(block) | python | def _on_action_toggle(self):
"""Toggle the current fold trigger."""
block = FoldScope.find_parent_scope(self.editor.textCursor().block())
self.toggle_fold_trigger(block) | [
"def",
"_on_action_toggle",
"(",
"self",
")",
":",
"block",
"=",
"FoldScope",
".",
"find_parent_scope",
"(",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
".",
"block",
"(",
")",
")",
"self",
".",
"toggle_fold_trigger",
"(",
"block",
")"
] | Toggle the current fold trigger. | [
"Toggle",
"the",
"current",
"fold",
"trigger",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L641-L644 |
30,766 | spyder-ide/spyder | spyder/plugins/editor/panels/codefolding.py | FoldingPanel._highlight_caret_scope | def _highlight_caret_scope(self):
"""
Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True.
"""
cursor = self.editor.textCursor()
block_nbr = cursor.blockNumber()
... | python | def _highlight_caret_scope(self):
"""
Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True.
"""
cursor = self.editor.textCursor()
block_nbr = cursor.blockNumber()
... | [
"def",
"_highlight_caret_scope",
"(",
"self",
")",
":",
"cursor",
"=",
"self",
".",
"editor",
".",
"textCursor",
"(",
")",
"block_nbr",
"=",
"cursor",
".",
"blockNumber",
"(",
")",
"if",
"self",
".",
"_block_nbr",
"!=",
"block_nbr",
":",
"block",
"=",
"F... | Highlight the scope of the current caret position.
This get called only if :attr:`
spyder.widgets.panels.FoldingPanel.highlight_care_scope` is True. | [
"Highlight",
"the",
"scope",
"of",
"the",
"current",
"caret",
"position",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/panels/codefolding.py#L657-L677 |
30,767 | spyder-ide/spyder | spyder/plugins/history/widgets.py | History.set_menu_actions | def set_menu_actions(self, menu_actions):
"""Add options to corner menu."""
if self.menu_actions is not None:
add_actions(self.menu, self.menu_actions) | python | def set_menu_actions(self, menu_actions):
"""Add options to corner menu."""
if self.menu_actions is not None:
add_actions(self.menu, self.menu_actions) | [
"def",
"set_menu_actions",
"(",
"self",
",",
"menu_actions",
")",
":",
"if",
"self",
".",
"menu_actions",
"is",
"not",
"None",
":",
"add_actions",
"(",
"self",
".",
"menu",
",",
"self",
".",
"menu_actions",
")"
] | Add options to corner menu. | [
"Add",
"options",
"to",
"corner",
"menu",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L76-L79 |
30,768 | spyder-ide/spyder | spyder/plugins/history/widgets.py | History.add_history | def add_history(self, filename, color_scheme, font, wrap):
"""
Add new history tab.
Args:
filename (str): file to be loaded in a new tab.
"""
filename = encoding.to_unicode_from_fs(filename)
if filename in self.filenames:
return
editor = c... | python | def add_history(self, filename, color_scheme, font, wrap):
"""
Add new history tab.
Args:
filename (str): file to be loaded in a new tab.
"""
filename = encoding.to_unicode_from_fs(filename)
if filename in self.filenames:
return
editor = c... | [
"def",
"add_history",
"(",
"self",
",",
"filename",
",",
"color_scheme",
",",
"font",
",",
"wrap",
")",
":",
"filename",
"=",
"encoding",
".",
"to_unicode_from_fs",
"(",
"filename",
")",
"if",
"filename",
"in",
"self",
".",
"filenames",
":",
"return",
"edi... | Add new history tab.
Args:
filename (str): file to be loaded in a new tab. | [
"Add",
"new",
"history",
"tab",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L101-L135 |
30,769 | spyder-ide/spyder | spyder/plugins/history/widgets.py | History.append_to_history | def append_to_history(self, filename, command, go_to_eof):
"""
Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file.
"""
if not... | python | def append_to_history(self, filename, command, go_to_eof):
"""
Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file.
"""
if not... | [
"def",
"append_to_history",
"(",
"self",
",",
"filename",
",",
"command",
",",
"go_to_eof",
")",
":",
"if",
"not",
"is_text_string",
"(",
"filename",
")",
":",
"# filename is a QString",
"filename",
"=",
"to_text_string",
"(",
"filename",
".",
"toUtf8",
"(",
"... | Append an entry to history filename.
Args:
filename (str): file to be updated in a new tab.
command (str): line to be added.
go_to_eof (bool): scroll to the end of file. | [
"Append",
"an",
"entry",
"to",
"history",
"filename",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/history/widgets.py#L137-L153 |
30,770 | spyder-ide/spyder | spyder/plugins/editor/utils/lsp.py | request | def request(req=None, method=None, requires_response=True):
"""Call function req and then emit its results to the LSP server."""
if req is None:
return functools.partial(request, method=method,
requires_response=requires_response)
@functools.wraps(req)
def wrapp... | python | def request(req=None, method=None, requires_response=True):
"""Call function req and then emit its results to the LSP server."""
if req is None:
return functools.partial(request, method=method,
requires_response=requires_response)
@functools.wraps(req)
def wrapp... | [
"def",
"request",
"(",
"req",
"=",
"None",
",",
"method",
"=",
"None",
",",
"requires_response",
"=",
"True",
")",
":",
"if",
"req",
"is",
"None",
":",
"return",
"functools",
".",
"partial",
"(",
"request",
",",
"method",
"=",
"method",
",",
"requires_... | Call function req and then emit its results to the LSP server. | [
"Call",
"function",
"req",
"and",
"then",
"emit",
"its",
"results",
"to",
"the",
"LSP",
"server",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/editor/utils/lsp.py#L12-L24 |
30,771 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_focus_client | def get_focus_client(self):
"""Return current client with focus, if any"""
widget = QApplication.focusWidget()
for client in self.get_clients():
if widget is client or widget is client.get_control():
return client | python | def get_focus_client(self):
"""Return current client with focus, if any"""
widget = QApplication.focusWidget()
for client in self.get_clients():
if widget is client or widget is client.get_control():
return client | [
"def",
"get_focus_client",
"(",
"self",
")",
":",
"widget",
"=",
"QApplication",
".",
"focusWidget",
"(",
")",
"for",
"client",
"in",
"self",
".",
"get_clients",
"(",
")",
":",
"if",
"widget",
"is",
"client",
"or",
"widget",
"is",
"client",
".",
"get_con... | Return current client with focus, if any | [
"Return",
"current",
"client",
"with",
"focus",
"if",
"any"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L417-L422 |
30,772 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.run_script | def run_script(self, filename, wdir, args, debug, post_mortem,
current_client, clear_variables):
"""Run script in current or dedicated client"""
norm = lambda text: remove_backslashes(to_text_string(text))
# Run Cython files in a dedicated console
is_cython = os... | python | def run_script(self, filename, wdir, args, debug, post_mortem,
current_client, clear_variables):
"""Run script in current or dedicated client"""
norm = lambda text: remove_backslashes(to_text_string(text))
# Run Cython files in a dedicated console
is_cython = os... | [
"def",
"run_script",
"(",
"self",
",",
"filename",
",",
"wdir",
",",
"args",
",",
"debug",
",",
"post_mortem",
",",
"current_client",
",",
"clear_variables",
")",
":",
"norm",
"=",
"lambda",
"text",
":",
"remove_backslashes",
"(",
"to_text_string",
"(",
"tex... | Run script in current or dedicated client | [
"Run",
"script",
"in",
"current",
"or",
"dedicated",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L436-L507 |
30,773 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_current_client_working_directory | def set_current_client_working_directory(self, directory):
"""Set current client working directory."""
shellwidget = self.get_current_shellwidget()
if shellwidget is not None:
shellwidget.set_cwd(directory) | python | def set_current_client_working_directory(self, directory):
"""Set current client working directory."""
shellwidget = self.get_current_shellwidget()
if shellwidget is not None:
shellwidget.set_cwd(directory) | [
"def",
"set_current_client_working_directory",
"(",
"self",
",",
"directory",
")",
":",
"shellwidget",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"if",
"shellwidget",
"is",
"not",
"None",
":",
"shellwidget",
".",
"set_cwd",
"(",
"directory",
")"
] | Set current client working directory. | [
"Set",
"current",
"client",
"working",
"directory",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L571-L575 |
30,774 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_working_directory | def set_working_directory(self, dirname):
"""Set current working directory.
In the workingdirectory and explorer plugins.
"""
if dirname:
self.main.workingdirectory.chdir(dirname, refresh_explorer=True,
refresh_console=False) | python | def set_working_directory(self, dirname):
"""Set current working directory.
In the workingdirectory and explorer plugins.
"""
if dirname:
self.main.workingdirectory.chdir(dirname, refresh_explorer=True,
refresh_console=False) | [
"def",
"set_working_directory",
"(",
"self",
",",
"dirname",
")",
":",
"if",
"dirname",
":",
"self",
".",
"main",
".",
"workingdirectory",
".",
"chdir",
"(",
"dirname",
",",
"refresh_explorer",
"=",
"True",
",",
"refresh_console",
"=",
"False",
")"
] | Set current working directory.
In the workingdirectory and explorer plugins. | [
"Set",
"current",
"working",
"directory",
".",
"In",
"the",
"workingdirectory",
"and",
"explorer",
"plugins",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L577-L583 |
30,775 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.execute_code | def execute_code(self, lines, current_client=True, clear_variables=False):
"""Execute code instructions."""
sw = self.get_current_shellwidget()
if sw is not None:
if sw._reading:
pass
else:
if not current_client:
... | python | def execute_code(self, lines, current_client=True, clear_variables=False):
"""Execute code instructions."""
sw = self.get_current_shellwidget()
if sw is not None:
if sw._reading:
pass
else:
if not current_client:
... | [
"def",
"execute_code",
"(",
"self",
",",
"lines",
",",
"current_client",
"=",
"True",
",",
"clear_variables",
"=",
"False",
")",
":",
"sw",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"if",
"sw",
"is",
"not",
"None",
":",
"if",
"sw",
".",
"_... | Execute code instructions. | [
"Execute",
"code",
"instructions",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L591-L616 |
30,776 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_new_client | def create_new_client(self, give_focus=True, filename='', is_cython=False,
is_pylab=False, is_sympy=False, given_name=None):
"""Create a new client"""
self.master_clients += 1
client_id = dict(int_id=to_text_string(self.master_clients),
str... | python | def create_new_client(self, give_focus=True, filename='', is_cython=False,
is_pylab=False, is_sympy=False, given_name=None):
"""Create a new client"""
self.master_clients += 1
client_id = dict(int_id=to_text_string(self.master_clients),
str... | [
"def",
"create_new_client",
"(",
"self",
",",
"give_focus",
"=",
"True",
",",
"filename",
"=",
"''",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
",",
"given_name",
"=",
"None",
")",
":",
"self",
".",
"m... | Create a new client | [
"Create",
"a",
"new",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L634-L697 |
30,777 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_for_kernel | def create_client_for_kernel(self):
"""Create a client connected to an existing kernel"""
connect_output = KernelConnectionDialog.get_connection_parameters(self)
(connection_file, hostname, sshkey, password, ok) = connect_output
if not ok:
return
else:
... | python | def create_client_for_kernel(self):
"""Create a client connected to an existing kernel"""
connect_output = KernelConnectionDialog.get_connection_parameters(self)
(connection_file, hostname, sshkey, password, ok) = connect_output
if not ok:
return
else:
... | [
"def",
"create_client_for_kernel",
"(",
"self",
")",
":",
"connect_output",
"=",
"KernelConnectionDialog",
".",
"get_connection_parameters",
"(",
"self",
")",
"(",
"connection_file",
",",
"hostname",
",",
"sshkey",
",",
"password",
",",
"ok",
")",
"=",
"connect_ou... | Create a client connected to an existing kernel | [
"Create",
"a",
"client",
"connected",
"to",
"an",
"existing",
"kernel"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L712-L720 |
30,778 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.connect_client_to_kernel | def connect_client_to_kernel(self, client, is_cython=False,
is_pylab=False, is_sympy=False):
"""Connect a client to its kernel"""
connection_file = client.connection_file
stderr_handle = None if self.test_no_stderr else client.stderr_handle
km, kc = ... | python | def connect_client_to_kernel(self, client, is_cython=False,
is_pylab=False, is_sympy=False):
"""Connect a client to its kernel"""
connection_file = client.connection_file
stderr_handle = None if self.test_no_stderr else client.stderr_handle
km, kc = ... | [
"def",
"connect_client_to_kernel",
"(",
"self",
",",
"client",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"connection_file",
"=",
"client",
".",
"connection_file",
"stderr_handle",
"=",
"None",
"if",... | Connect a client to its kernel | [
"Connect",
"a",
"client",
"to",
"its",
"kernel"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L722-L751 |
30,779 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.edit_file | def edit_file(self, filename, line):
"""Handle %edit magic petitions."""
if encoding.is_text_file(filename):
# The default line number sent by ipykernel is always the last
# one, but we prefer to use the first.
self.edit_goto.emit(filename, 1, '') | python | def edit_file(self, filename, line):
"""Handle %edit magic petitions."""
if encoding.is_text_file(filename):
# The default line number sent by ipykernel is always the last
# one, but we prefer to use the first.
self.edit_goto.emit(filename, 1, '') | [
"def",
"edit_file",
"(",
"self",
",",
"filename",
",",
"line",
")",
":",
"if",
"encoding",
".",
"is_text_file",
"(",
"filename",
")",
":",
"# The default line number sent by ipykernel is always the last\r",
"# one, but we prefer to use the first.\r",
"self",
".",
"edit_go... | Handle %edit magic petitions. | [
"Handle",
"%edit",
"magic",
"petitions",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L754-L759 |
30,780 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.config_options | def config_options(self):
"""
Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config
"""
# ---- Jupyter config ----
try:
full_cfg = load_pyconfig_files(['jupyter_qtcon... | python | def config_options(self):
"""
Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config
"""
# ---- Jupyter config ----
try:
full_cfg = load_pyconfig_files(['jupyter_qtcon... | [
"def",
"config_options",
"(",
"self",
")",
":",
"# ---- Jupyter config ----\r",
"try",
":",
"full_cfg",
"=",
"load_pyconfig_files",
"(",
"[",
"'jupyter_qtconsole_config.py'",
"]",
",",
"jupyter_config_dir",
"(",
")",
")",
"# From the full config we only select the JupyterWi... | Generate a Trailets Config instance for shell widgets using our
config system
This lets us create each widget with its own config | [
"Generate",
"a",
"Trailets",
"Config",
"instance",
"for",
"shell",
"widgets",
"using",
"our",
"config",
"system",
"This",
"lets",
"us",
"create",
"each",
"widget",
"with",
"its",
"own",
"config"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L761-L822 |
30,781 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.additional_options | def additional_options(self, is_pylab=False, is_sympy=False):
"""
Additional options for shell widgets that are not defined
in JupyterWidget config options
"""
options = dict(
pylab=self.get_option('pylab'),
autoload_pylab=self.get_option('pylab/aut... | python | def additional_options(self, is_pylab=False, is_sympy=False):
"""
Additional options for shell widgets that are not defined
in JupyterWidget config options
"""
options = dict(
pylab=self.get_option('pylab'),
autoload_pylab=self.get_option('pylab/aut... | [
"def",
"additional_options",
"(",
"self",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"options",
"=",
"dict",
"(",
"pylab",
"=",
"self",
".",
"get_option",
"(",
"'pylab'",
")",
",",
"autoload_pylab",
"=",
"self",
".",
"get_opt... | Additional options for shell widgets that are not defined
in JupyterWidget config options | [
"Additional",
"options",
"for",
"shell",
"widgets",
"that",
"are",
"not",
"defined",
"in",
"JupyterWidget",
"config",
"options"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L854-L873 |
30,782 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.register_client | def register_client(self, client, give_focus=True):
"""Register new client"""
client.configure_shellwidget(give_focus=give_focus)
# Local vars
shellwidget = client.shellwidget
control = shellwidget._control
page_control = shellwidget._page_control
# Cre... | python | def register_client(self, client, give_focus=True):
"""Register new client"""
client.configure_shellwidget(give_focus=give_focus)
# Local vars
shellwidget = client.shellwidget
control = shellwidget._control
page_control = shellwidget._page_control
# Cre... | [
"def",
"register_client",
"(",
"self",
",",
"client",
",",
"give_focus",
"=",
"True",
")",
":",
"client",
".",
"configure_shellwidget",
"(",
"give_focus",
"=",
"give_focus",
")",
"# Local vars\r",
"shellwidget",
"=",
"client",
".",
"shellwidget",
"control",
"=",... | Register new client | [
"Register",
"new",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L875-L939 |
30,783 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_client_index_from_id | def get_client_index_from_id(self, client_id):
"""Return client index from id"""
for index, client in enumerate(self.clients):
if id(client) == client_id:
return index | python | def get_client_index_from_id(self, client_id):
"""Return client index from id"""
for index, client in enumerate(self.clients):
if id(client) == client_id:
return index | [
"def",
"get_client_index_from_id",
"(",
"self",
",",
"client_id",
")",
":",
"for",
"index",
",",
"client",
"in",
"enumerate",
"(",
"self",
".",
"clients",
")",
":",
"if",
"id",
"(",
"client",
")",
"==",
"client_id",
":",
"return",
"index"
] | Return client index from id | [
"Return",
"client",
"index",
"from",
"id"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1016-L1020 |
30,784 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_related_clients | def get_related_clients(self, client):
"""
Get all other clients that are connected to the same kernel as `client`
"""
related_clients = []
for cl in self.get_clients():
if cl.connection_file == client.connection_file and \
cl is not client:
... | python | def get_related_clients(self, client):
"""
Get all other clients that are connected to the same kernel as `client`
"""
related_clients = []
for cl in self.get_clients():
if cl.connection_file == client.connection_file and \
cl is not client:
... | [
"def",
"get_related_clients",
"(",
"self",
",",
"client",
")",
":",
"related_clients",
"=",
"[",
"]",
"for",
"cl",
"in",
"self",
".",
"get_clients",
"(",
")",
":",
"if",
"cl",
".",
"connection_file",
"==",
"client",
".",
"connection_file",
"and",
"cl",
"... | Get all other clients that are connected to the same kernel as `client` | [
"Get",
"all",
"other",
"clients",
"that",
"are",
"connected",
"to",
"the",
"same",
"kernel",
"as",
"client"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1022-L1031 |
30,785 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.restart | def restart(self):
"""
Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter
"""
self.master_clients = 0
self.create_new_client_if_empty = False
for i in range(len(self.clients)):
... | python | def restart(self):
"""
Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter
"""
self.master_clients = 0
self.create_new_client_if_empty = False
for i in range(len(self.clients)):
... | [
"def",
"restart",
"(",
"self",
")",
":",
"self",
".",
"master_clients",
"=",
"0",
"self",
".",
"create_new_client_if_empty",
"=",
"False",
"for",
"i",
"in",
"range",
"(",
"len",
"(",
"self",
".",
"clients",
")",
")",
":",
"client",
"=",
"self",
".",
... | Restart the console
This is needed when we switch projects to update PYTHONPATH
and the selected interpreter | [
"Restart",
"the",
"console",
"This",
"is",
"needed",
"when",
"we",
"switch",
"projects",
"to",
"update",
"PYTHONPATH",
"and",
"the",
"selected",
"interpreter"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1039-L1059 |
30,786 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_from_path | def create_client_from_path(self, path):
"""Create a client with its cwd pointing to path."""
self.create_new_client()
sw = self.get_current_shellwidget()
sw.set_cwd(path) | python | def create_client_from_path(self, path):
"""Create a client with its cwd pointing to path."""
self.create_new_client()
sw = self.get_current_shellwidget()
sw.set_cwd(path) | [
"def",
"create_client_from_path",
"(",
"self",
",",
"path",
")",
":",
"self",
".",
"create_new_client",
"(",
")",
"sw",
"=",
"self",
".",
"get_current_shellwidget",
"(",
")",
"sw",
".",
"set_cwd",
"(",
"path",
")"
] | Create a client with its cwd pointing to path. | [
"Create",
"a",
"client",
"with",
"its",
"cwd",
"pointing",
"to",
"path",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1076-L1080 |
30,787 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_client_for_file | def create_client_for_file(self, filename, is_cython=False):
"""Create a client to execute code related to a file."""
# Create client
self.create_new_client(filename=filename, is_cython=is_cython)
# Don't increase the count of master clients
self.master_clients -= 1
... | python | def create_client_for_file(self, filename, is_cython=False):
"""Create a client to execute code related to a file."""
# Create client
self.create_new_client(filename=filename, is_cython=is_cython)
# Don't increase the count of master clients
self.master_clients -= 1
... | [
"def",
"create_client_for_file",
"(",
"self",
",",
"filename",
",",
"is_cython",
"=",
"False",
")",
":",
"# Create client\r",
"self",
".",
"create_new_client",
"(",
"filename",
"=",
"filename",
",",
"is_cython",
"=",
"is_cython",
")",
"# Don't increase the count of ... | Create a client to execute code related to a file. | [
"Create",
"a",
"client",
"to",
"execute",
"code",
"related",
"to",
"a",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1082-L1094 |
30,788 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.get_client_for_file | def get_client_for_file(self, filename):
"""Get client associated with a given file."""
client = None
for idx, cl in enumerate(self.get_clients()):
if self.filenames[idx] == filename:
self.tabwidget.setCurrentIndex(idx)
client = cl
... | python | def get_client_for_file(self, filename):
"""Get client associated with a given file."""
client = None
for idx, cl in enumerate(self.get_clients()):
if self.filenames[idx] == filename:
self.tabwidget.setCurrentIndex(idx)
client = cl
... | [
"def",
"get_client_for_file",
"(",
"self",
",",
"filename",
")",
":",
"client",
"=",
"None",
"for",
"idx",
",",
"cl",
"in",
"enumerate",
"(",
"self",
".",
"get_clients",
"(",
")",
")",
":",
"if",
"self",
".",
"filenames",
"[",
"idx",
"]",
"==",
"file... | Get client associated with a given file. | [
"Get",
"client",
"associated",
"with",
"a",
"given",
"file",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1096-L1104 |
30,789 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.set_elapsed_time | def set_elapsed_time(self, client):
"""Set elapsed time for slave clients."""
related_clients = self.get_related_clients(client)
for cl in related_clients:
if cl.timer is not None:
client.create_time_label()
client.t0 = cl.t0
cli... | python | def set_elapsed_time(self, client):
"""Set elapsed time for slave clients."""
related_clients = self.get_related_clients(client)
for cl in related_clients:
if cl.timer is not None:
client.create_time_label()
client.t0 = cl.t0
cli... | [
"def",
"set_elapsed_time",
"(",
"self",
",",
"client",
")",
":",
"related_clients",
"=",
"self",
".",
"get_related_clients",
"(",
"client",
")",
"for",
"cl",
"in",
"related_clients",
":",
"if",
"cl",
".",
"timer",
"is",
"not",
"None",
":",
"client",
".",
... | Set elapsed time for slave clients. | [
"Set",
"elapsed",
"time",
"for",
"slave",
"clients",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1106-L1115 |
30,790 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.tunnel_to_kernel | def tunnel_to_kernel(self, connection_info, hostname, sshkey=None,
password=None, timeout=10):
"""
Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci.
"""
lports = zmqtunnel.select_random_ports(4)
... | python | def tunnel_to_kernel(self, connection_info, hostname, sshkey=None,
password=None, timeout=10):
"""
Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci.
"""
lports = zmqtunnel.select_random_ports(4)
... | [
"def",
"tunnel_to_kernel",
"(",
"self",
",",
"connection_info",
",",
"hostname",
",",
"sshkey",
"=",
"None",
",",
"password",
"=",
"None",
",",
"timeout",
"=",
"10",
")",
":",
"lports",
"=",
"zmqtunnel",
".",
"select_random_ports",
"(",
"4",
")",
"rports",... | Tunnel connections to a kernel via ssh.
Remote ports are specified in the connection info ci. | [
"Tunnel",
"connections",
"to",
"a",
"kernel",
"via",
"ssh",
".",
"Remote",
"ports",
"are",
"specified",
"in",
"the",
"connection",
"info",
"ci",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1129-L1143 |
30,791 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_kernel_spec | def create_kernel_spec(self, is_cython=False,
is_pylab=False, is_sympy=False):
"""Create a kernel spec for our own kernels"""
# Before creating our kernel spec, we always need to
# set this value in spyder.ini
CONF.set('main', 'spyder_pythonpath',
... | python | def create_kernel_spec(self, is_cython=False,
is_pylab=False, is_sympy=False):
"""Create a kernel spec for our own kernels"""
# Before creating our kernel spec, we always need to
# set this value in spyder.ini
CONF.set('main', 'spyder_pythonpath',
... | [
"def",
"create_kernel_spec",
"(",
"self",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"# Before creating our kernel spec, we always need to\r",
"# set this value in spyder.ini\r",
"CONF",
".",
"set",
"(",
"'m... | Create a kernel spec for our own kernels | [
"Create",
"a",
"kernel",
"spec",
"for",
"our",
"own",
"kernels"
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1145-L1154 |
30,792 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.create_kernel_manager_and_kernel_client | def create_kernel_manager_and_kernel_client(self, connection_file,
stderr_handle,
is_cython=False,
is_pylab=False,
is_sympy=... | python | def create_kernel_manager_and_kernel_client(self, connection_file,
stderr_handle,
is_cython=False,
is_pylab=False,
is_sympy=... | [
"def",
"create_kernel_manager_and_kernel_client",
"(",
"self",
",",
"connection_file",
",",
"stderr_handle",
",",
"is_cython",
"=",
"False",
",",
"is_pylab",
"=",
"False",
",",
"is_sympy",
"=",
"False",
")",
":",
"# Kernel spec\r",
"kernel_spec",
"=",
"self",
".",... | Create kernel manager and client. | [
"Create",
"kernel",
"manager",
"and",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1156-L1199 |
30,793 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.restart_kernel | def restart_kernel(self):
"""Restart kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.restart_kernel() | python | def restart_kernel(self):
"""Restart kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.restart_kernel() | [
"def",
"restart_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"restart_kernel",
"(",
")"
] | Restart kernel of current client. | [
"Restart",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1201-L1206 |
30,794 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.reset_kernel | def reset_kernel(self):
"""Reset kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.reset_namespace() | python | def reset_kernel(self):
"""Reset kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.reset_namespace() | [
"def",
"reset_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"reset_namespace",
"(",
")"
] | Reset kernel of current client. | [
"Reset",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1208-L1213 |
30,795 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.interrupt_kernel | def interrupt_kernel(self):
"""Interrupt kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.stop_button_click_handler() | python | def interrupt_kernel(self):
"""Interrupt kernel of current client."""
client = self.get_current_client()
if client is not None:
self.switch_to_plugin()
client.stop_button_click_handler() | [
"def",
"interrupt_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"self",
".",
"switch_to_plugin",
"(",
")",
"client",
".",
"stop_button_click_handler",
"(",
")"
] | Interrupt kernel of current client. | [
"Interrupt",
"kernel",
"of",
"current",
"client",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1215-L1220 |
30,796 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.update_execution_state_kernel | def update_execution_state_kernel(self):
"""Update actions following the execution state of the kernel."""
client = self.get_current_client()
if client is not None:
executing = client.stop_button.isEnabled()
self.interrupt_action.setEnabled(executing) | python | def update_execution_state_kernel(self):
"""Update actions following the execution state of the kernel."""
client = self.get_current_client()
if client is not None:
executing = client.stop_button.isEnabled()
self.interrupt_action.setEnabled(executing) | [
"def",
"update_execution_state_kernel",
"(",
"self",
")",
":",
"client",
"=",
"self",
".",
"get_current_client",
"(",
")",
"if",
"client",
"is",
"not",
"None",
":",
"executing",
"=",
"client",
".",
"stop_button",
".",
"isEnabled",
"(",
")",
"self",
".",
"i... | Update actions following the execution state of the kernel. | [
"Update",
"actions",
"following",
"the",
"execution",
"state",
"of",
"the",
"kernel",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1222-L1227 |
30,797 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.connect_external_kernel | def connect_external_kernel(self, shellwidget):
"""
Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel.
"""
sw = shellwidget
kc = shellwidget.kernel_client
if self.main.help is not None:
self.main.help.set_sh... | python | def connect_external_kernel(self, shellwidget):
"""
Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel.
"""
sw = shellwidget
kc = shellwidget.kernel_client
if self.main.help is not None:
self.main.help.set_sh... | [
"def",
"connect_external_kernel",
"(",
"self",
",",
"shellwidget",
")",
":",
"sw",
"=",
"shellwidget",
"kc",
"=",
"shellwidget",
".",
"kernel_client",
"if",
"self",
".",
"main",
".",
"help",
"is",
"not",
"None",
":",
"self",
".",
"main",
".",
"help",
"."... | Connect an external kernel to the Variable Explorer and Help, if
it is a Spyder kernel. | [
"Connect",
"an",
"external",
"kernel",
"to",
"the",
"Variable",
"Explorer",
"and",
"Help",
"if",
"it",
"is",
"a",
"Spyder",
"kernel",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1229-L1243 |
30,798 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.disambiguate_fname | def disambiguate_fname(self, fname):
"""Generate a file name without ambiguation."""
files_path_list = [filename for filename in self.filenames
if filename]
return sourcecode.disambiguate_fname(files_path_list, fname) | python | def disambiguate_fname(self, fname):
"""Generate a file name without ambiguation."""
files_path_list = [filename for filename in self.filenames
if filename]
return sourcecode.disambiguate_fname(files_path_list, fname) | [
"def",
"disambiguate_fname",
"(",
"self",
",",
"fname",
")",
":",
"files_path_list",
"=",
"[",
"filename",
"for",
"filename",
"in",
"self",
".",
"filenames",
"if",
"filename",
"]",
"return",
"sourcecode",
".",
"disambiguate_fname",
"(",
"files_path_list",
",",
... | Generate a file name without ambiguation. | [
"Generate",
"a",
"file",
"name",
"without",
"ambiguation",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1269-L1273 |
30,799 | spyder-ide/spyder | spyder/plugins/ipythonconsole/plugin.py | IPythonConsole.update_tabs_text | def update_tabs_text(self):
"""Update the text from the tabs."""
# This is needed to prevent that hanged consoles make reference
# to an index that doesn't exist. See issue 4881
try:
for index, fname in enumerate(self.filenames):
client = self.clients[in... | python | def update_tabs_text(self):
"""Update the text from the tabs."""
# This is needed to prevent that hanged consoles make reference
# to an index that doesn't exist. See issue 4881
try:
for index, fname in enumerate(self.filenames):
client = self.clients[in... | [
"def",
"update_tabs_text",
"(",
"self",
")",
":",
"# This is needed to prevent that hanged consoles make reference\r",
"# to an index that doesn't exist. See issue 4881\r",
"try",
":",
"for",
"index",
",",
"fname",
"in",
"enumerate",
"(",
"self",
".",
"filenames",
")",
":",... | Update the text from the tabs. | [
"Update",
"the",
"text",
"from",
"the",
"tabs",
"."
] | f76836ce1b924bcc4efd3f74f2960d26a4e528e0 | https://github.com/spyder-ide/spyder/blob/f76836ce1b924bcc4efd3f74f2960d26a4e528e0/spyder/plugins/ipythonconsole/plugin.py#L1275-L1288 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.