Merge branch 'rcorre-buffer_idx_completion'
This commit is contained in:
commit
dcec71de19
@ -60,6 +60,7 @@ Changed
|
|||||||
configured with the new `new-instance-open-target.window` setting.
|
configured with the new `new-instance-open-target.window` setting.
|
||||||
- Word hints now are more clever about getting the element text from some elements.
|
- Word hints now are more clever about getting the element text from some elements.
|
||||||
- Completions for `:help` and `:bind` now also show hidden commands
|
- Completions for `:help` and `:bind` now also show hidden commands
|
||||||
|
- The `:buffer` completion now also filters using the first column (id).
|
||||||
|
|
||||||
Removed
|
Removed
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
@ -148,7 +148,8 @@ class TabCompletionModel(base.BaseCompletionModel):
|
|||||||
def __init__(self, parent=None):
|
def __init__(self, parent=None):
|
||||||
super().__init__(parent)
|
super().__init__(parent)
|
||||||
|
|
||||||
self.columns_to_filter = [self.URL_COLUMN, self.TEXT_COLUMN]
|
self.columns_to_filter = [self.IDX_COLUMN, self.URL_COLUMN,
|
||||||
|
self.TEXT_COLUMN]
|
||||||
|
|
||||||
for win_id in objreg.window_registry:
|
for win_id in objreg.window_registry:
|
||||||
tabbed_browser = objreg.get('tabbed-browser', scope='window',
|
tabbed_browser = objreg.get('tabbed-browser', scope='window',
|
||||||
|
Loading…
Reference in New Issue
Block a user