有人知道如何在Putux中通过shift +左箭头,shift +右箭头切换窗口。
以下内容似乎无效。
var result = (from a in dTB_CB.tbl_PlanItem
join b in dTB_CB.tbl_Item on (a.CodItem) equals (b.CodItem)
where a.CodModel == NE
&& (a.DatFim <= DatCorte || a.DatEnd == null)
&& (!b.DesItem.Contains("JUMPER") || b.DesItem.Contains("JUMPER") && (!b.Origin.Substring(0, 1).Contains("0") || !b.Origin.Substring(0, 1).Contains("2")))
select new Position
{
CodItem = a.CodItem,
Position = a.NumPosition,
Description = b.CodItem
}).ToList();
return result;
这是我当前的tmux.conf
# Shift arrow to switch windows
bind -n S-Left previous-window
bind -n S-Right next-window