我正在使用 NodeJS 中的祝福应用程序构建终端应用程序。
谁能解释如何使用列表中的搜索选项?
这是我使用的列表对象:
var numlist = blessed.List({
top: 23,
left: 18,
parent: screen,
height: 8,
width: 20,
mouse: true,
keys: true,
vi: true,
items: ["4","5","6"],
border: {
type: 'line'
},
style:{
selected: {
bg: 'blue',
fg: 'white'
},
item:{
bg: 'white',
fg: 'blue'
},
focus:{
bg: 'red'
}
}
});
这是我写的听众:
numlist.on('select', (item, index) => {});