|
1 | | -*term.txt* For Vim version 9.1. Last change: 2024 May 05 |
| 1 | +*term.txt* For Vim version 9.1. Last change: 2024 Oct 05 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -292,11 +292,11 @@ entry in /etc/termcap and everything should work. |
292 | 292 | On some systems (at least on FreeBSD with XFree86 3.1.2) the codes that the |
293 | 293 | <End> and <Home> keys send contain a <Nul> character. To make these keys send |
294 | 294 | the proper key code, add these lines to your ~/.Xdefaults file: |
295 | | - |
296 | | -*VT100.Translations: #override \n\ |
297 | | - <Key>Home: string("0x1b") string("[7~") \n\ |
298 | | - <Key>End: string("0x1b") string("[8~") |
299 | | - |
| 295 | +> |
| 296 | + *VT100.Translations: #override \n\ |
| 297 | + <Key>Home: string("0x1b") string("[7~") \n\ |
| 298 | + <Key>End: string("0x1b") string("[8~") |
| 299 | +< |
300 | 300 | *xterm-8bit* *xterm-8-bit* |
301 | 301 | Xterm can be run in a mode where it uses 8-bit escape sequences. The CSI code |
302 | 302 | is used instead of <Esc>[. The advantage is that an <Esc> can quickly be |
@@ -719,9 +719,9 @@ If this feature is enabled by the 't_fe' sequence, special key sequences are |
719 | 719 | sent from the terminal to Vim every time the terminal gains or loses focus. |
720 | 720 | Vim fires focus events (|FocusGained|/|FocusLost|) by handling them accordingly. |
721 | 721 | Focus event tracking is disabled by a 't_fd' sequence when exiting "raw" mode. |
722 | | -If you would like to disable this feature, add the following to your .vimrc: |
723 | | - `set t_fd=` |
724 | | - `set t_fe=` |
| 722 | +If you would like to disable this feature, add the following to your .vimrc: > |
| 723 | + set t_fd= |
| 724 | + set t_fe= |
725 | 725 | If your terminal does support this but Vim does not recognize the terminal, |
726 | 726 | you may have to set the options yourself: > |
727 | 727 | let &t_fe = "\<Esc>[?1004h" |
@@ -810,13 +810,13 @@ region. It should be set to an empty string otherwise. |
810 | 810 | Note for xterm users: The shifted cursor keys normally don't work. You can |
811 | 811 | make them work with the xmodmap command and some mappings in Vim. |
812 | 812 |
|
813 | | - Give these commands in the xterm: |
| 813 | + Give these commands in the xterm: > |
814 | 814 | xmodmap -e "keysym Up = Up F13" |
815 | 815 | xmodmap -e "keysym Down = Down F16" |
816 | 816 | xmodmap -e "keysym Left = Left F18" |
817 | 817 | xmodmap -e "keysym Right = Right F19" |
818 | | - |
819 | | - And use these mappings in Vim: |
| 818 | +< |
| 819 | + And use these mappings in Vim: > |
820 | 820 | :map <t_F3> <S-Up> |
821 | 821 | :map! <t_F3> <S-Up> |
822 | 822 | :map <t_F6> <S-Down> |
|
0 commit comments