kilo icon indicating copy to clipboard operation
kilo copied to clipboard

A text editor in less than 1000 LOC with syntax highlight and search.

Results 61 kilo issues
Sort by recently updated
recently updated
newest added

closes antirez/kilo#48 Uses the xterm-style "?1049l" & "?1049h" escape codes to use the alternate screen buffer of some ANSI terminal emulators to avoid overwriting the data displayed on the terminal...

Otherwise kilo will halt at startup because we'll block reading the response until the user types an explicit newline. This can happen if, in `getWindowSize`, this condition is true `ioctl(1,...

this is fixes issue #9 (Forward delete key goes backward in Kilo.)

Pressing Ctrl+D was advancing the cursor ahead of the intended position when typing, causing desynced input and unexpected cursor behavior. This patch disables Ctrl+D in editorProcessKeypress(), so it is ignored...

L'ho compilato con tcc senza errori o avvisi, fantastico! Ho riscontrato due problemi: 1) Quando si digitano caratteri accentati con il layout "US intl with dead keys", è necessario premere...

Some of the `goto`s statements in this file make sense, particularly for reducing the LOC count. `goto failed` and `goto fatal` though, in my opinion, do not make sense. What's...

When E.cx is greater than or equal to E.screencols, the shift should probably be E.cx-E.screencols+1?

# kilo editor improvements ## Changes - Usage errors now display in red color - Fixed screen clearing bug after program exit - Build files now go to a dedicated...

- Add missing C++ keywords: catch, using, final, override - Add C keyword: restrict - Fix typo: deltype -> decltype - Remove auto from type list (avoid duplication with keywords)...