Home
last modified time | relevance | path

Searched refs:CSI_ARG_OR (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/libvterm/src/
H A Dstate.c1062 val = CSI_ARG_OR(args[0], 1); in on_csi()
1068 row = CSI_ARG_OR(args[0], 1); in on_csi()
1261 col = CSI_ARG_OR(args[0], 1); in on_csi()
1291 val = CSI_ARG_OR(args[0], 0); in on_csi()
1303 row = CSI_ARG_OR(args[0], 1); in on_csi()
1317 row = CSI_ARG_OR(args[0], 1); in on_csi()
1330 val = CSI_ARG_OR(args[0], 0); in on_csi()
1394 val = CSI_ARG_OR(args[0], 0); in on_csi()
1423 val = CSI_ARG_OR(args[0], 1); in on_csi()
1455 val = CSI_ARG_OR(args[0], 0); in on_csi()
[all …]
/vim-8.2.3635/src/libvterm/include/
H A Dvterm.h368 #define CSI_ARG_OR(a,def) (CSI_ARG(a) == CSI_ARG_MISSING ? (def) : CSI_ARG(a)) macro