diff options
Diffstat (limited to 'editors/vi.c')
-rw-r--r-- | editors/vi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/vi.c b/editors/vi.c index d3a35e781..b8cacb43f 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -65,8 +65,8 @@ static const char SOn[] ALIGN1 = "\033[0m"; | |||
65 | /* terminal bell sequence */ | 65 | /* terminal bell sequence */ |
66 | static const char bell[] ALIGN1 = "\007"; | 66 | static const char bell[] ALIGN1 = "\007"; |
67 | /* Clear-end-of-line and Clear-end-of-screen ESC sequence */ | 67 | /* Clear-end-of-line and Clear-end-of-screen ESC sequence */ |
68 | static const char Ceol[] ALIGN1 = "\033[0K"; | 68 | static const char Ceol[] ALIGN1 = "\033[K"; |
69 | static const char Ceos[] ALIGN1 = "\033[0J"; | 69 | static const char Ceos[] ALIGN1 = "\033[J"; |
70 | /* Cursor motion arbitrary destination ESC sequence */ | 70 | /* Cursor motion arbitrary destination ESC sequence */ |
71 | static const char CMrc[] ALIGN1 = "\033[%d;%dH"; | 71 | static const char CMrc[] ALIGN1 = "\033[%d;%dH"; |
72 | /* Cursor motion up and down ESC sequence */ | 72 | /* Cursor motion up and down ESC sequence */ |