/freebsd/contrib/nvi/vi/ |
H A D | vs_relative.c | 45 * Return the screens necessary to display the line, or if specified, 54 size_t cols, screens; in vs_screens() local 56 /* Left-right screens are simple, it's always 1. */ in vs_screens() 75 screens = (cols / sp->cols + (cols % sp->cols ? 1 : 0)); in vs_screens() 76 if (screens == 0) in vs_screens() 77 screens = 1; in vs_screens() 82 VIP(sp)->ss_screens = screens; in vs_screens() 84 return (screens); in vs_screens() 139 * If folding screens (the historic vi screen format), past the end in vs_columns() 253 * If folding screens (the historic vi screen format), past in vs_colpos()
|
H A D | vs_split.c | 76 * Small screens: see vs_refresh.c section 6a. Set a flag so in vs_split() 86 * Split the screen, and link the screens together. If creating a in vs_split() 120 * Small screens: see vs_refresh.c, section 6a. in vs_split() 232 * the screens. in vs_vsplit() 300 /* Move past all screens with lower row numbers. */ in vs_insert() 305 * Move past all screens with the same row number and lower in vs_insert() 354 /* If no other screens to join, we're done. */ in vs_discard() 364 * Find a set of screens that cover one of the screen's borders. in vs_discard() 369 * border with any other set of screens, so we can't discard it. We in vs_discard() 376 * Modify the affected screens. Redraw the modified screen(s) from in vs_discard() [all …]
|
H A D | v_scroll.c | 263 * Page up half screens. 271 * Half screens always succeed unless already at SOF. in v_hpageup() 274 * Half screens set the scroll value, even if the command in v_hpageup() 287 * Page down half screens. 295 * Half screens always succeed unless already at EOF. in v_hpagedown() 298 * Half screens set the scroll value, even if the command in v_hpagedown() 311 * Page down full screens. 356 * Page up full screens.
|
H A D | vs_refresh.c | 57 * Refresh all screens. 85 * 2: Related or dirtied screens, or screens with messages. in vs_refresh() 87 * If related screens share a view into a file, they may have been in vs_refresh() 88 * modified as well. Refresh any screens that aren't exiting that in vs_refresh() 89 * have paint or dirty bits set. Always update their screens, we in vs_refresh() 91 * screens other than the current one, the cursor will be trashed. in vs_refresh() 124 * painting screens other than the current one, we don't want to make in vs_refresh() 212 * 6a: Small screens. in vs_paint()
|
H A D | v_screen.c | 25 * Switch screens.
|
H A D | v_cmd.c | 37 "^B scroll up by screens"}, 45 "^D scroll down by half screens (setting count)"}, 53 "^F scroll down by screens"},
|
H A D | vi.c | 256 /* Switch screens, change focus. */ in vi() 366 /* If the last command switched screens, update. */ in vi() 376 /* Switch screens, change focus. */ in vi() 1003 /* Move all screens to the hidden queue, tossing screen maps. */ in v_dtoh() 1010 /* XXXX Change if hidden screens per window */ in v_dtoh() 1020 "319|%d screens backgrounded; use :display to list them", in v_dtoh()
|
H A D | vs_smap.c | 603 * Small screens: see vs_refresh.c section 6a. in vs_sm_up() 757 /* One-line screens can fail. */ in vs_sm_1up() 773 * line and other screens back. 822 * Small screens: see vs_refresh.c section 6a. in vs_sm_down() 990 /* One-line screens can fail. */ in vs_sm_1down() 1006 * line and other screens back.
|
H A D | vs_line.c | 101 * Set the number of chars or screens to skip until a character is to in vs_line() 261 /* Do it the hard way, for leftright scrolling screens. */ in vs_line() 288 /* Do it the hard way, for historic line-folding screens. */ in vs_line()
|
/freebsd/share/doc/usd/13.viref/ |
H A D | vi.ref | 196 .IP "Background and foreground screens" 201 command foregrounds backgrounded screens. 204 command can be used to list the background screens. 218 screens, and the tags stack. 276 .\".IP "Shell screens" 283 .IP "Split screens" 298 command rotates between the foreground screens. 635 .SH 1 "Multiple Screens" 638 supports multiple screens by dividing the window into regions. 639 It also supports stacks of screens by permitting the user to change [all …]
|
H A D | vi.cmd.roff | 406 screens. 415 (In the case of split screens, this size is corrected to the 446 (In the case of split screens, the default scrolling distance is 477 screens. 486 (In the case of split screens, this size is corrected to the 671 (In the case of split screens, the default scrolling distance is 685 screen if there are no lower screens in the window.
|
/freebsd/usr.sbin/bsdconfig/include/ |
H A D | usage.hlp | 30 PageUp and PageDown keys will scroll by entire screens. 37 Most screens offer a Help button - USE IT! It generally offers useful 60 switch between screens, where `F<n>' is the function key corresponding
|
/freebsd/contrib/nvi/cl/ |
H A D | cl_funcs.c | 289 * into multiple screens to support split screen semantics. For this in cl_cursor() 291 * current screen, and not absolute. Screens that implement the split in cl_cursor() 292 * using physically distinct screens won't need this hack. in cl_cursor() 320 * video to delimit split screens. If the screen does not do this, in cl_deleteln() 334 * and other screens must support that semantic. in cl_deleteln() 361 /* no screens got a piece; we're done */ in cl_discard() 542 * any lines separating vertically split screens. If the horizontal in cl_refresh() 582 * Draw a dividing line between two vertically split screens. 714 * The ex implementation of this function isn't needed by screens not in cl_suspend() 718 * The vi implementation of this function isn't needed by screens not in cl_suspend()
|
/freebsd/contrib/nvi/common/ |
H A D | screen.h | 29 * is used by global routines or is shared by too many screens. 33 TAILQ_ENTRY(_scr) q; /* Screens. */ 145 * Editor screens. 189 #define SC_SSWITCH 0x00001000 /* Switch screens. */
|
H A D | main.c | 70 /* Structures shared by screens so stored in the GS structure. */ in editor() 398 * Main edit loop. Vi handles split screens itself, we only return in editor() 417 * End the program, discarding screens and most of the global area. 427 /* If there are any remaining screens, kill them off. */ in v_end()
|
H A D | gs.h | 57 TAILQ_HEAD(_dqh, _scr) dq[1]; /* Displayed screens. */ 58 TAILQ_HEAD(_hqh, _scr) hq[1]; /* Hidden screens. */
|
/freebsd/sys/dev/virtio/console/ |
H A D | virtio_console.h | 43 /* colums of the screens */ 45 /* rows of the screens */
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_screen.c | 92 * Display the list of screens. 105 msgq(sp, M_INFO, "149|No background screens to display"); in ex_sdisplay()
|
H A D | ex_display.c | 32 * Display cscope connections, buffers, tags or screens. 53 if (!is_prefix(arg, L("screens"))) in ex_display()
|
/freebsd/sys/contrib/device-tree/Bindings/display/bridge/ |
H A D | fsl,imx8qxp-pixel-combiner.yaml | 16 either one screen, two screens, or virtual screens. The pixel combiner is
|
/freebsd/contrib/ncurses/man/ |
H A D | curs_threads.3x | 111 and separate screens (on different devices). 141 Terminal data are initialized when screens are created. 149 Windows are associated with screens.
|
H A D | curs_sp_funcs.3x | 215 improve the ability to manage multiple screens. 230 to update multiple screens.
|
/freebsd/sys/contrib/device-tree/Bindings/input/ |
H A D | hid-over-i2c.txt | 4 I2C bus. These devices can be for example touchpads, keyboards, touch screens
|
H A D | hid-over-i2c.yaml | 15 I2C bus. These devices can be for example touchpads, keyboards, touch screens
|
/freebsd/sys/arm/broadcom/bcm2835/ |
H A D | vc_vchi_audioserv_defs.h | 41 * List of screens that are currently supported
|