commit resolving issue#1395
This commit is contained in:
parent
4d3cbe659d
commit
3d4e76b1a4
@ -70,7 +70,6 @@ class CompletionView(QTreeView):
|
||||
border-bottom: 1px solid
|
||||
{{ color['completion.category.border.bottom'] }};
|
||||
font: {{ font['completion.category'] }};
|
||||
|
||||
}
|
||||
|
||||
QTreeView::item:selected, QTreeView::item:selected:hover {
|
||||
|
@ -122,7 +122,6 @@ SECTION_DESC = {
|
||||
DEFAULT_FONT_SIZE = '10pt' if sys.platform == 'darwin' else '8pt'
|
||||
|
||||
|
||||
|
||||
def data(readonly=False):
|
||||
"""Get the default config data.
|
||||
|
||||
@ -1242,10 +1241,10 @@ def data(readonly=False):
|
||||
"Default monospace fonts."),
|
||||
|
||||
('completion',
|
||||
SettingValue(typ.Font(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||
SettingValue(typ.Font(), DEFAULT_FONT_SIZE + ' ${_monospace}'),
|
||||
"Font used in the completion widget."),
|
||||
|
||||
('completion.category',
|
||||
('completion.category',
|
||||
SettingValue(typ.Font(), 'bold ${completion}'),
|
||||
"Font used in the completion categories."),
|
||||
|
||||
@ -1592,7 +1591,8 @@ KEY_DATA = collections.OrderedDict([
|
||||
('rl-unix-line-discard', ['<Ctrl-U>']),
|
||||
('rl-kill-line', ['<Ctrl-K>']),
|
||||
('rl-kill-word', ['<Alt-D>']),
|
||||
('rl-unix-word-rubout', ['<Ctrl-W>', '<Alt-Backspace>']),
|
||||
('rl-unix-word-rubout', ['<Ctrl-W>']),
|
||||
('rl-backward-kill-word', ['<Alt-Backspace>']),
|
||||
('rl-yank', ['<Ctrl-Y>']),
|
||||
('rl-delete-char', ['<Ctrl-?>']),
|
||||
('rl-backward-delete-char', ['<Ctrl-H>']),
|
||||
|
Loading…
Reference in New Issue
Block a user