comparison runtime/doc/tips.txt @ 14249:4543777545a3

Updated runtime and language files. commit https://github.com/vim/vim/commit/6dc819b1299e1d9f99303568772ade544d5c1322 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 3 16:42:19 2018 +0200 Updated runtime and language files.
author Christian Brabandt <cb@256bit.org>
date Tue, 03 Jul 2018 16:45:06 +0200
parents 1174611ad715
children 2f7e67dd088c
comparison
equal deleted inserted replaced
14248:6d5195298b47 14249:4543777545a3
406 |$VIMRUNTIME|. 406 |$VIMRUNTIME|.
407 407
408 ============================================================================== 408 ==============================================================================
409 Executing shell commands in a window *shell-window* 409 Executing shell commands in a window *shell-window*
410 410
411 There have been questions for the possibility to execute a shell in a window 411 See |terminal|.
412 inside Vim. The answer: you can't! Including this would add a lot of code to 412
413 Vim, which is a good reason not to do this. After all, Vim is an editor, it 413 Another solution is splitting your terminal screen or display window with the
414 is not supposed to do non-editing tasks. However, to get something like this,
415 you might try splitting your terminal screen or display window with the
416 "splitvt" program. You can probably find it on some ftp server. The person 414 "splitvt" program. You can probably find it on some ftp server. The person
417 that knows more about this is Sam Lantinga <slouken@cs.ucdavis.edu>. 415 that knows more about this is Sam Lantinga <slouken@cs.ucdavis.edu>.
418 An alternative is the "window" command, found on BSD Unix systems, which 416
417 Another alternative is the "window" command, found on BSD Unix systems, which
419 supports multiple overlapped windows. Or the "screen" program, found at 418 supports multiple overlapped windows. Or the "screen" program, found at
420 www.uni-erlangen.de, which supports a stack of windows. 419 www.uni-erlangen.de, which supports a stack of windows.
421 420
422 ============================================================================== 421 ==============================================================================
423 Hex editing *hex-editing* *using-xxd* 422 Hex editing *hex-editing* *using-xxd*