File tree Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Expand file tree Collapse file tree 2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,24 @@ def tab_close_wrapper():
19
19
20
20
def tab_duplicate ():
21
21
"""Duplicates the current tab."""
22
+
23
+ def tab_search ():
24
+ """Searches through the tabs."""
25
+
26
+ def tab_pin ():
27
+ """Pins the current tab."""
28
+
29
+ def tab_unpin ():
30
+ """Unpins the current tab."""
31
+
32
+ def tab_rename ():
33
+ """Renames the current tab."""
34
+
35
+ def tab_focus_most_recent ():
36
+ """Jumps to the most recently viewed tab."""
37
+
38
+ def tab_move_left ():
39
+ """Moves the current tab to the left."""
40
+
41
+ def tab_move_right ():
42
+ """Moves the current tab to the right."""
Original file line number Diff line number Diff line change @@ -3,8 +3,16 @@ tag: user.tabs
3
3
tab (open | new) : app.tab_open ()
4
4
tab (last | previous) : app.tab_previous ()
5
5
tab next : app.tab_next ()
6
- tab close : user.tab_close_wrapper ()
7
6
tab (reopen | restore) : app.tab_reopen ()
7
+
8
+ tab close : user.tab_close_wrapper ()
8
9
go tab <number> : user.tab_jump (number )
9
10
go tab final : user.tab_final ()
10
11
tab duplicate : user.tab_duplicate ()
12
+ tab search : user.tab_search ()
13
+ tab pin : user.tab_pin ()
14
+ tab unpin : user.tab_unpin ()
15
+ tab rename : user.tab_rename ()
16
+ tab flip : user.tab_focus_most_recent ()
17
+ tab move left : user.tab_move_left ()
18
+ tab move right : user.tab_move_right ()
You can’t perform that action at this time.
0 commit comments