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

In editorUpdateRow, a check is never performed to find non-printable characters. However, the function _should_ replace non-printable characters with '?'.

#18 and #28 fixed.

to reproduce, start a new line, hit `TAB`, then `/` twice. or hit `/` twice and then `TAB` at the beginning of the line. `Segmentation fault: 11` Seems like the...

The function `getCursorPosition()` use escape sequence to query cursor position. But after `write()`, the result will block this process. So we should use `pipe` or other ways to redirect to...

Kilo seems to be acting oddly with iTerm2 shell integration. When working properly, a small blue triangle appears next to each new prompt: (screenshot from [iTerm2 documentation](https://www.iterm2.com/documentation-shell-integration.html)) When using Kilo:

Hey there, I don't really want to make a pull request here so I thought I'd just make an issue. Sorry if that's not proper etiquette! By the way, love...

``` dcarol@dcarol ~/w/g/kilo> make cc -o kilo kilo.c -Wall -W -pedantic -std=c99 In file included from /usr/include/termios.h:25:0, from kilo.c:40: /usr/include/features.h:148:3: warning: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE" [-Wcpp]...

This patch moves the cursor to the bottom row of the editor window and inserts a new line before quitting. This prevents the shell's cursor to appear inside the old...