You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have hundres of items to deal with, menu is not enough to hold them. Then you will need a listbox.
@@ -79,6 +81,8 @@ It can be used to select buffers or functions in current file:
79
81
80
82
The cursor will stay in the current function initially. Navigate and press enter to jump to the selected function.
81
83
84
+
See: [Listbox help](MANUAL.md#listbox).
85
+
82
86
### Inputbox
83
87
84
88
Prompt user to input a string in a TUI box:
@@ -87,6 +91,8 @@ Prompt user to input a string in a TUI box:
87
91
88
92
Could be used as a drop-in replacement of `input()` function.
89
93
94
+
See: [Input box help](MANUAL.md#inputbox).
95
+
90
96
### Context menu
91
97
92
98
Context menu imitates Windows context menu (triggered by your mouse right button), which will display around the cursor:
@@ -101,6 +107,8 @@ The border can be changed too:
101
107
102
108
Because some terminals or fonts cannot display unicode borders correctly, so QuickUI choose ascii border characters by default. But you can change it as you like.
103
109
110
+
See: [Context menu help](MANUAL.md#context-menu).
111
+
104
112
### Textbox
105
113
106
114
Textbox is used to display arbitrary text in a popup window.
@@ -119,6 +127,8 @@ Display vim messages:
119
127
120
128
Navigating the messages with `HJKL` or `PageUp/PageDown` is much more convenient than using `:messages`.
121
129
130
+
See: [Text box help](MANUAL.md#textbox).
131
+
122
132
### Preview window
123
133
124
134
Preview window is used to replace traditional `pedit` command and can be used to display certain file in a small popup window around your cursor:
@@ -133,6 +143,8 @@ Use it to preview quickfix result:
133
143
134
144
If you have many items in the quickfix window, instead of open them one by one, you are able to press `p` in the quickfix window and preview them in the popup.
0 commit comments