summaryrefslogtreecommitdiff
path: root/buffer.c
AgeCommit message (Collapse)Author
2023-01-09misc windows fixespommicket
2023-01-09start windows fixpommicket
2023-01-08write first to <path>.ted-tmp then rename to <path>.pommicket
this prevents freak occurences, e.g. power outage during file write, from losing (all) data.
2023-01-04more documentationpommicket
2023-01-04the great "filename to path" renamepommicket
2023-01-04fix command-line argument starting file if it doesn't existpommicket
it used to open an untitled buffer. also, clarified buffer_load_file
2023-01-04some ted.h documentationpommicket
2023-01-04more documentationpommicket
2023-01-03fix problem when file is modified while it's read into the buffer.pommicket
before, the file wouldn't be reloaded properly
2023-01-03go to type definitionpommicket
2023-01-03go to declarationpommicket
2023-01-02fix problem where backspacing selection puts cursor in weird placepommicket
2023-01-02:up-blank-line, etc.pommicket
2023-01-02rename v[234] to vec[234]pommicket
2023-01-02clean some stuff uppommicket
2023-01-02finish restructuringpommicket
2023-01-02restructure buffer.cpommicket
2023-01-01restructure syntax.cpommicket
2023-01-01char const => const charpommicket
2023-01-01replace @OPTIMIZE with @TODOpommicket
2023-01-01move string32.c into util.cpommicket
2023-01-01move functions from io.c to session.cpommicket
2022-12-31goto-definition-at-cursor commandpommicket
2022-12-31avoid using time_get_secondspommicket
because it makes a syscall
2022-12-31use double instead of struct timespecpommicket
2022-12-30clip highlight to buffer rectpommicket
2022-12-30document highlights!pommicket
2022-12-30definitions menu, but it's acting weirdpommicket
2022-12-30start workspace/symbolpommicket
2022-12-29textDocument/definition for ctrl+clickpommicket
2022-12-29hover highlightpommicket
2022-12-29more hoverpommicket
2022-12-28fixed (all?) problems with signature helppommicket
2022-12-28refresh signature help when cursor moved or buffer switchedpommicket
2022-12-27start signature helppommicket
2022-12-27configurable max buffer size + max view-only buffer sizepommicket
2022-12-27fixed previous issues, + "save as" should now workpommicket
2022-12-25fix problem with jdtls by appending \n to empty filespommicket
2022-12-24fix ted_get_lsp problempommicket
2022-12-24LSP setting!pommicket
2022-12-24start LSP settingpommicket
2022-12-23framework for having multiple/configurable LSPspommicket
2022-12-23identifier-trigger-characters settingpommicket
2022-12-23close autocomplete on CMD_UP/insert non-word char/etc.pommicket
2022-12-22Merge branch 'trunk' into lsppommicket
2022-12-22fix memory bug introduced by "memory bug fix"pommicket
2022-12-22didClose notification, better completionpommicket
2022-12-22document IDs instead of documentspommicket
2022-12-20autocomplete very broken but kinda workingpommicket
2022-12-20start completion requestspommicket