123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347 |
- /* command.c, Ait, BSD 3-Clause, Kevin Bloom, 2023-2024,
- Derived from: Atto January 2017
- Derived from: AnthonyEditor January 93
- */
- #include "header.h"
- #include "termbox.h"
- #include "util.h"
- void quit() { done = 1; }
- void up()
- {
- curbp->b_point = lncolumn(curbp, upup(curbp, curwp, curbp->b_point),curbp->b_pcol - curwp->w_left);
- }
- void down()
- {
- curbp->b_point = lncolumn(curbp, dndn(curbp, curwp, curbp->b_point),curbp->b_pcol - curwp->w_left);
- }
- void lnbegin()
- {
- char_t *p;
- if(curbp->b_point == 0)
- return;
- p = ptr(curbp, curbp->b_point);
- while(*(p = ptr(curbp, curbp->b_point-1)) != '\n' && p > curbp->b_buf)
- --curbp->b_point;
- if(curbp->b_point != 0 && p == curbp->b_buf)
- --curbp->b_point;
- curbp->b_pcol = 0 + curwp->w_left;
- }
- void version() { msg(VERSION); }
- void top() { curbp->b_point = 0; curbp->b_pcol = 0 + curwp->w_left; }
- void bottom()
- {
- curbp->b_point = pos(curbp, curbp->b_ebuf);
- if (curbp->b_epage < pos(curbp, curbp->b_ebuf))
- curbp->b_reframe = 1;
- curbp->b_pcol = 0 + curwp->w_left;
- }
- void block() { curbp->b_mark = curbp->b_point; }
- void copy() { copy_cut(FALSE, TRUE, FALSE); }
- void cut() { copy_cut(TRUE, TRUE, FALSE); }
- void resize_terminal()
- {
- LINES = tb_height();
- COLS = tb_width();
- MSGLINE = LINES-1;
- one_window(curwp);
- }
- void print_to_msgline(const char *msg)
- {
- printf_tb(0, MSGLINE, TB_DEFAULT, TB_DEFAULT, msg);
- tb_set_cursor(strlen(msg), MSGLINE);
- }
- void quit_ask()
- {
- if (modified_buffers() > 0) {
- const char *msg = "Modified buffers exist; really exit (y/N) ?";
- print_to_msgline(msg);
- clrtoeol(msg, MSGLINE);
- if (!yesno(FALSE)) {
- clrtoeol("", MSGLINE);
- return;
- }
- }
- quit();
- }
- void redraw()
- {
- window_t *wp;
- for (wp=wheadp; wp != NULL; wp = wp->w_next)
- wp->w_update = TRUE;
- update_display();
- }
- void left()
- {
- int n = prev_utf8_char_size();
- if(curbp->b_point == 0)
- return;
- while (0 < curbp->b_point && n-- > 0)
- --curbp->b_point;
- }
- void right()
- {
- if(curbp->b_point == pos(curbp, curbp->b_ebuf))
- return;
- int n = utf8_size(*ptr(curbp,curbp->b_point));
- while ((curbp->b_point < pos(curbp, curbp->b_ebuf)) && n-- > 0)
- ++curbp->b_point;
- }
- /* work out number of bytes based on first byte */
- int utf8_size(char_t c)
- {
- if (c >= 192 && c < 224) return 2;
- if (c >= 224 && c < 240) return 3;
- if (c >= 240 && c < 248) return 4;
- return 1; /* if in doubt it is 1 */
- }
- int prev_utf8_char_size()
- {
- int n;
- for (n=2;n<5;n++)
- if (-1 < curbp->b_point - n && (utf8_size(*(ptr(curbp, curbp->b_point - n))) == n))
- return n;
- return 1;
- }
- void lnend()
- {
- char_t *p;
- int cols = 0;
- lnbegin(); // reset the line so we get the right number for `cols`
- while(*(p = ptr(curbp, curbp->b_point)) != '\n' && curbp->b_ebuf > p) {
- ++curbp->b_point;
- cols++;
- }
- /* loop until we get to the correct column */
- while(cols > curwp->w_cols) {
- cols -= curwp->w_cols;
- }
- curbp->b_pcol = cols + curwp->w_left; // set it for column-memory
- }
- void wleft()
- {
- char_t *p;
- if ((!isspace(*(p = ptr(curbp, curbp->b_point))) || !is_symbol(*p)) && curbp->b_buf < p)
- --curbp->b_point;
- while ((isspace(*(p = ptr(curbp, curbp->b_point))) || is_symbol(*p)) && curbp->b_buf < p)
- --curbp->b_point;
- while (!isspace(*(p = ptr(curbp, curbp->b_point))) && !is_symbol(*p) && curbp->b_buf < p)
- --curbp->b_point;
- if(isspace(*(p = ptr(curbp, curbp->b_point))) || is_symbol(*p))
- ++curbp->b_point;
- }
- void wleftdelete()
- {
- currentcommand = KBD_DELETE_CHAR;
- iblock();
- wleft();
- copy_cut(TRUE, TRUE, FALSE);
- }
- void pgdown()
- {
- curbp->b_page = curbp->b_point = upup(curbp, curwp, curbp->b_epage);
- while (0 < curbp->b_row--)
- down();
- curbp->b_epage = pos(curbp, curbp->b_ebuf);
- curbp->b_pcol = 0 + curwp->w_left;
- }
- void pgup()
- {
- int i = curwp->w_rows;
- while (0 < --i) {
- curbp->b_page = upup(curbp, curwp, curbp->b_page);
- up();
- }
- curbp->b_pcol = 0 + curwp->w_left;
- }
- void wright()
- {
- char_t *p;
- if ((!isspace(*(p = ptr(curbp, curbp->b_point))) || !is_symbol(*p)) && p < curbp->b_ebuf)
- ++curbp->b_point;
- while ((isspace(*(p = ptr(curbp, curbp->b_point))) || is_symbol(*p)) && p < curbp->b_ebuf)
- ++curbp->b_point;
- while (!isspace(*(p = ptr(curbp, curbp->b_point))) && !is_symbol(*p) && p < curbp->b_ebuf)
- ++curbp->b_point;
- }
- void wrightdelete()
- {
- currentcommand = KBD_DELETE_CHAR;
- iblock();
- wright();
- copy_cut(TRUE, TRUE, FALSE);
- }
- void insert()
- {
- assert(curbp->b_gap <= curbp->b_egap);
- if (curbp->b_gap == curbp->b_egap && !growgap(curbp, CHUNK))
- return;
- curbp->b_point = movegap(curbp, curbp->b_point);
- /* overwrite if mid line, not EOL or EOF, CR will insert as normal */
- if ((curbp->b_flags & B_OVERWRITE) && *input != '\r' && *(ptr(curbp, curbp->b_point)) != '\n' && curbp->b_point < pos(curbp,curbp->b_ebuf) ) {
- *(ptr(curbp, curbp->b_point)) = *input;
- if (curbp->b_point < pos(curbp, curbp->b_ebuf))
- ++curbp->b_point;
- } else {
- *curbp->b_gap++ = *input == '\r' ? '\n' : *input;
- curbp->b_point = pos(curbp, curbp->b_egap);
- // force reframe if scrolled off bottom of screen and at EOF
- if (curbp->b_point == pos(curbp, curbp->b_ebuf) && curbp->b_point >= curbp->b_epage &&
- curwp->w_rows == curwp->w_row)
- curbp->b_reframe = 1;
- }
- curbp->b_flags |= B_MODIFIED;
- undoset_flag = TRUE;
- currentcommand = KBD_INSERT;
- }
- void insert_str()
- {
- int len = strlen((const char *)input);
- assert(curbp->b_gap <= curbp->b_egap);
- undoset(1, FALSE);
- if (curbp->b_gap == curbp->b_egap && !growgap(curbp, CHUNK))
- return;
- curbp->b_point = movegap(curbp, curbp->b_point);
- /* overwrite if mid line, not EOL or EOF, CR will insert as normal */
- if ((curbp->b_flags & B_OVERWRITE) && input[0] != '\r' && *(ptr(curbp, curbp->b_point)) != '\n' && curbp->b_point < pos(curbp,curbp->b_ebuf) ) {
- *(ptr(curbp, curbp->b_point)) = *input;
- if (curbp->b_point < pos(curbp, curbp->b_ebuf))
- ++curbp->b_point;
- } else {
- for(int i = 0; i < len; i++) {
- *curbp->b_gap++ = input[i] == '\r' ? '\n' : input[i];
- // if(input[i] == '\n' || input[i] == '\r')
- // curbp->b_line++;
- }
- curbp->b_point = pos(curbp, curbp->b_egap);
- // force reframe if scrolled off bottom of screen and at EOF
- if (curbp->b_point == pos(curbp, curbp->b_ebuf) && curbp->b_point >= curbp->b_epage &&
- curwp->w_rows == curwp->w_row)
- curbp->b_reframe = 1;
- }
- curbp->b_flags |= B_MODIFIED;
- undoset_flag = TRUE;
- }
- void insert_unicode()
- {
- int len = strlen((const char *)unicode_buf);
- assert(curbp->b_gap <= curbp->b_egap);
- undoset(INSERT, lastcommand == KBD_INSERT);
- if (curbp->b_gap == curbp->b_egap && !growgap(curbp, CHUNK))
- return;
- curbp->b_point = movegap(curbp, curbp->b_point);
- /* overwrite if mid line, not EOL or EOF, CR will insert as normal */
- for(int i = 0; i < len; i++) {
- *curbp->b_gap++ = unicode_buf[i];
- }
- curbp->b_point = pos(curbp, curbp->b_egap);
- // force reframe if scrolled off bottom of screen and at EOF
- if (curbp->b_point == pos(curbp, curbp->b_ebuf) && curbp->b_point >= curbp->b_epage &&
- curwp->w_rows == curwp->w_row)
- curbp->b_reframe = 1;
- curbp->b_flags |= B_MODIFIED;
- undoset_flag = TRUE;
- unicode_buf[0] = '\0';
- currentcommand = KBD_INSERT;
- }
- void backsp()
- {
- undoset(3, lastcommand == KBD_DELETE_CHAR);
- if(curbp->b_point != 0 && *ptr(curbp, curbp->b_point - 1) == '\n')
- curbp->b_line--;
- curbp->b_point = movegap(curbp, curbp->b_point);
- if (curbp->b_buf < curbp->b_gap) {
- curbp->b_gap -= prev_utf8_char_size();
- curbp->b_flags |= B_MODIFIED;
- }
- curbp->b_point = pos(curbp, curbp->b_egap);
- currentcommand = KBD_DELETE_CHAR;
- }
- void delete()
- {
- undoset(2, lastcommand == KBD_DELETE_CHAR);
- curbp->b_point = movegap(curbp, curbp->b_point);
- if (curbp->b_egap < curbp->b_ebuf) {
- curbp->b_egap += utf8_size(*curbp->b_egap);
- curbp->b_point = pos(curbp, curbp->b_egap);
- curbp->b_flags |= B_MODIFIED;
- }
- currentcommand = KBD_DELETE_CHAR;
- }
- void gotoline()
- {
- int line;
- point_t p;
- if (getinput("Goto line: ", temp, STRBUF_S, F_CLEAR, FALSE)) {
- line = atoi(temp);
- p = line_to_point(line);
- if (p != -1) {
- curbp->b_point = p;
- curbp->b_pcol = 0 + curwp->w_left;
- if (curbp->b_epage < pos(curbp, curbp->b_ebuf)) curbp->b_reframe = 1;
- curwp->w_update = TRUE;
- msg("Line %d", line);
- } else {
- msg("Line %d, not found", line);
- }
- }
- clrtoeol("", MSGLINE);
- }
- void jumptorow()
- {
- int line = -1, j = 0, i = 0, current, lastln, pageln;
- char num[3] = { 0, 0, 0 };
- struct tb_event ev;
- char *prompt = "Jump to line reference: ";
- int start_col = strlen(prompt), match = FALSE;
- char opts[10] = {'f','j','d','k','s','l','g','h', 'a', ';'};
- char chars[curwp->w_rows][2];
- point_t point;
- char_t *p;
- char f, s;
- int count = 0, fp = 0, sp = 0;
- get_line_stats(¤t, &lastln, curbp);
- pageln = current - curwp->w_row;
- point = curbp->b_page;
- p = ptr(curbp, point);
- for(int i = 0; i < curwp->w_rows && pageln <= lastln; i++) {
- f = opts[fp];
- s = opts[sp];
- chars[i][0] = f;
- chars[i][1] = s;
- printf_tb(curwp->w_left, curwp->w_top+i, TB_RED, TB_CYAN, "%c%c", f,s);
- sp++;
- count++;
- if(count > 7) {
- fp++;
- sp = 0;
- count = 0;
- }
- int c = 1;
- while(*(p = ptr(curbp, point)) != '\n' &&
- curbp->b_ebuf > p && c < curwp->w_cols) {
- ++point;
- c++;
- }
- if(*p == '\n' || pageln == lastln)
- pageln++;
- ++point;
- p = ptr(curbp, point);
- }
- display_prompt_and_response(prompt, num);
- tb_present();
- while(j < 2) {
- display_prompt_and_response(prompt, num);
- tb_present();
- if(tb_poll_event(&ev) != TB_OK) break;
- if(ev.key == TB_KEY_CTRL_G) {
- clrtoeol("", MSGLINE);
- return;
- }
- if(j < 2) {
- num[j] = ev.ch;
- tb_set_cursor(start_col, MSGLINE);
- addstr(num);
- point = curbp->b_page;
- p = ptr(curbp, point);
- if(j == 0) {
- pageln = current - curwp->w_row;
- for(int i = 0; i < curwp->w_rows && pageln <= lastln; i++) {
- if(chars[i][0] == ev.ch) {
- match = TRUE;
- if(*p != '\n')
- p = ptr(curbp, point+1);
- if(*p == '\0')
- *p = ' ';
- printf_tb(curwp->w_left, curwp->w_top+i, TB_RED, TB_CYAN, "%c", chars[i][1]);
- printf_tb(curwp->w_left+1, curwp->w_top+i, TB_DEFAULT, TB_DEFAULT, "%c", *p == '\n' ? ' ' : *p);
- } else {
- printf_tb(curwp->w_left, curwp->w_top+i, TB_DEFAULT, TB_DEFAULT, "%c", *p == '\n' ? ' ' : *p);
- if(*p != '\n')
- p = ptr(curbp, point+1);
- if(*p == '\0')
- *p = ' ';
- printf_tb(curwp->w_left+1, curwp->w_top+i, TB_DEFAULT, TB_DEFAULT, "%c", *p == '\n' ? ' ' : *p);
- }
- int c = 1;
- while(*(p = ptr(curbp, point)) != '\n' &&
- curbp->b_ebuf > p && c < curwp->w_cols) {
- ++point;
- c++;
- }
- if(*p == '\n' || pageln == lastln)
- pageln++;
- ++point;
- p = ptr(curbp, point);
- }
- }
- j++;
- }
- if(!match) {
- clrtoeol("", MSGLINE);
- return;
- }
- }
- for(; i < curwp->w_rows; i++) {
- if(chars[i][0] == num[0] && chars[i][1] == num[1]) {
- line = curwp->w_row - i;
- break;
- }
- }
- if(i == curwp->w_rows) {
- msg("Out of bounds");
- return;
- }
- if(line > 0) {
- for(; line > 0; line--) {
- up();
- }
- } else {
- for(; line < 0; line++) {
- down();
- }
- }
- clrtoeol("", MSGLINE);
- }
- void jumpword()
- {
- point_t current = curbp->b_page;
- char num[3] = { 'f', 'f', 0 };
- int j = 0, match = FALSE;
- char starting[1];
- struct tb_event ev;
- char *prompt = "Jump to word starting with: ";
- int start_col = strlen(prompt);
- char opts[10] = {'f','j','d','k','s','l','g','h', 'a', ';'};
- int diff = curbp->b_epage - curbp->b_page;
- char chars[diff][2];
- point_t point = -1;
- int begin = TRUE, is_white = FALSE, is_symb = FALSE, charlen = 0;
- char_t *p, *tp;
- char f, s;
- int count = 0, fp = 0, sp = 0, x = 0, y = 0;
- display_prompt_and_response(prompt, starting);
- tb_present();
- if(tb_poll_event(&ev) != TB_OK) return;
- if(ev.key == TB_KEY_CTRL_G) {
- clrtoeol("", MSGLINE);
- return;
- }
- starting[0] = (unsigned)ev.ch;
- for(; current < curbp->b_epage; current++) {
- p = ptr(curbp, current);
- is_white = isspace(*p);
- is_symb = is_symbol(*p);
- if(is_white || is_symb || current == 0)
- begin = TRUE;
- if(*p == (char_t)starting[0] && begin) {
- f = opts[fp];
- s = opts[sp];
- chars[current-curbp->b_page][0] = f;
- chars[current-curbp->b_page][1] = s;
- charlen++;
- printf_tb(curwp->w_left+x, curwp->w_top+y, TB_RED, TB_CYAN, "%c%c", f,s);
- sp++;
- count++;
- if(count > 7) {
- fp++;
- sp = 0;
- count = 0;
- }
- begin = FALSE;
- }
- if(!is_white && !is_symb)
- begin = FALSE;
- x++;
- if(*p == '\t')
- x += (TAB_SIZE - 2);
- if(*p < 31)
- x++;
- if(*p == '\n' || x >= curwp->w_cols) {
- x = 0;
- y++;
- }
- }
- tb_present();
- if(charlen > 1) {
- display_prompt_and_response(prompt, num);
- tb_present();
- while(j < 2) {
- display_prompt_and_response(prompt, num);
- tb_present();
- if(tb_poll_event(&ev) != TB_OK) break;
- if(ev.key == TB_KEY_CTRL_G) {
- clrtoeol("", MSGLINE);
- return;
- }
- if(j < 2) {
- num[j] = ev.ch;
- tb_set_cursor(start_col, MSGLINE);
- addstr(num);
- x = 0;
- y = 0;
- if(j == 0) {
- for(current = curbp->b_page; current < curbp->b_epage; current++) {
- p = ptr(curbp, current);
- tp = ptr(curbp, current);
- is_white = isspace(*p);
- is_symb = is_symbol(*p);
- if(is_white || is_symb || current == 0)
- begin = TRUE;
- if(*p == (char_t)starting[0] && begin) {
- point_t i = current-curbp->b_page;
- if(chars[i][0] == ev.ch) {
- match = TRUE;
- tp = ptr(curbp, current+1);
- printf_tb(curwp->w_left+x, curwp->w_top+y, TB_RED, TB_CYAN, "%c", chars[i][1]);
- printf_tb(curwp->w_left+x+1, curwp->w_top+y, TB_DEFAULT, TB_DEFAULT, "%c", *tp == '\n' ? ' ' : *tp);
- } else {
- printf_tb(curwp->w_left+x, curwp->w_top+y, TB_DEFAULT, TB_DEFAULT, "%c", *tp == '\n' ? ' ' : *tp);
- tp = ptr(curbp, current+1);
- printf_tb(curwp->w_left+x+1, curwp->w_top+y, TB_DEFAULT, TB_DEFAULT, "%c", *tp == '\n' ? ' ' : *tp);
- }
- begin = FALSE;
- }
- if(!is_white && !is_symb)
- begin = FALSE;
- x++;
- if(*p == '\t')
- x += (TAB_SIZE - 2);
- if(*p < 31)
- x++;
- if(*p == '\n' || x >= curwp->w_cols) {
- x = 0;
- y++;
- }
- }
- }
- j++;
- if(!match) {
- clrtoeol("", MSGLINE);
- return;
- }
- }
- }
- }
- for(point_t cur = 0; cur < diff; cur++) {
- if(chars[cur][0] == num[0] && chars[cur][1] == num[1]) {
- point = cur + curbp->b_page;
- break;
- }
- }
- if(point == -1) {
- msg("Out of bounds.");
- } else {
- curbp->b_point = point;
- int cols = 0;
- /* Calculate the pcol value */
- lnbegin(); // reset the line so we get the right number for `cols`
- while(curbp->b_point != point) {
- ++curbp->b_point;
- cols++;
- }
- /* loop until we get to the correct column */
- while(cols > curwp->w_cols) {
- cols -= curwp->w_cols;
- }
- curbp->b_pcol = cols + curwp->w_left; // set it for column-memory
- clrtoeol("", MSGLINE);
- }
- /* Clear out the chars array */
- for(int i = 0; i < diff; i++) {
- chars[i][0] = 0;
- chars[i][1] = 0;
- }
- /* TODO: figure out why this has to be here
- Without this printf, the chars array doesn't appear to get
- cleared entirely and you end up jumping to the wrong points.
- */
- printf("%s", chars[0]);
- }
- void get_current_path(char *cur_path)
- {
- int cutoff = 0;
- for(int i = strlen(curbp->b_fname) - 1; i > -1; i--) {
- if(curbp->b_fname[i] == '/') {
- cutoff = i;
- break;
- }
- }
- for(int i = 0; i <= cutoff; i++)
- cur_path[i] = curbp->b_fname[i];
- cur_path[cutoff+1] = '\0';
- }
- void insertfile()
- {
- char cur_path[PATH_MAX] = "\0";
- if(curbp->b_path) {
- get_current_path(cur_path);
- strcpy(temp, cur_path);
- }
- else
- strcpy(temp, editor_dir);
- if (getfilename("Insert file: ", temp, PATH_MAX))
- (void)insert_file(temp, TRUE);
- }
- void readfile()
- {
- buffer_t *bp;
- char cur_path[PATH_MAX];
- if(curbp->b_path) {
- get_current_path(cur_path);
- strcpy(temp, cur_path);
- }
- else
- strcpy(temp, editor_dir);
- int result = getfilename("Find file: ", (char*)temp, PATH_MAX);
- if (result) {
- bp = find_buffer(temp, TRUE);
- disassociate_b(curwp);
- curbp = bp;
- associate_b2w(curbp, curwp);
- if (!growgap(curbp, CHUNK))
- fatal("%s: Failed to allocate required memory.\n");
- movegap(curbp, 0);
- /* load the file if not already loaded */
- if (bp != NULL && bp->b_fname[0] == '\0') {
- if (!load_file(temp)) {
- msg("New file %s", temp);
- }
- strncpy(curbp->b_fname, temp, PATH_MAX);
- curbp->b_fname[PATH_MAX] = '\0'; /* truncate if required */
- }
- }
- }
- void savebuffer()
- {
- const char *message = "No newline at the end of file, add one (Y/n) ?";
- if(curbp->b_flags & B_MODIFIED) {
- /* move the gap to point 0 so that the ebuf is updated. */
- (void) movegap(curbp, 0);
- if(*(curbp->b_ebuf - 1) != '\n') {
- print_to_msgline(message);
- clrtoeol(message, MSGLINE);
- if (yesno(TRUE)) {
- clrtoeol("", MSGLINE);
- *curbp->b_ebuf++ = '\n';
- }
- }
- if (curbp->b_fname[0] != '\0') {
- save(curbp->b_fname);
- return;
- } else {
- writefile();
- }
- } else {
- msg("(No changes need to be saved.)");
- }
- }
- void writefile()
- {
- const char *message = "Write file: ";
- strncpy(temp, curbp->b_fname, PATH_MAX);
- if (getinput((char *)message, temp, PATH_MAX, F_NONE, FALSE))
- if (save(temp) == TRUE)
- strncpy(curbp->b_fname, temp, PATH_MAX);
- clrtoeol(message, MSGLINE);
- }
- void killbuffer()
- {
- buffer_t *kill_bp = curbp;
- buffer_t *bp;
- int bcount = count_buffers();
- const char *message = "Discard changes (y/N) ?";
- /* do nothing if only buffer left is the scratch buffer */
- if (bcount == 1 && 0 == strcmp(get_buffer_name(curbp), "*scratch*"))
- return;
- if (curbp->b_flags & B_MODIFIED) {
- print_to_msgline(message);
- clrtoeol(message, MSGLINE);
- if (!yesno(FALSE))
- return;
- }
- if (bcount == 1) {
- /* create a scratch buffer */
- bp = find_buffer("*scratch*", TRUE);
- strncpy(bp->b_bname, "*scratch*", STRBUF_S);
- bp->b_path = FALSE;
- }
- next_buffer();
- assert(kill_bp != curbp);
- delete_buffer(kill_bp);
- for(window_t *wp = wheadp; wp != NULL; wp = wp->w_next) {
- if(kill_bp == wp->w_bufp) {
- wp->w_bufp = curbp;
- }
- }
- }
- void iblock()
- {
- block();
- msg("Mark set");
- }
- void unmark()
- {
- curbp->b_pmark = curbp->b_mark;
- curbp->b_mark = NOMARK;
- msg("Mark removed");
- }
- void toggle_overwrite_mode() {
- if (curbp->b_flags & B_OVERWRITE)
- curbp->b_flags &= ~B_OVERWRITE;
- else
- curbp->b_flags |= B_OVERWRITE;
- }
- void killtoeol()
- {
- if (curbp->b_point == pos(curbp, curbp->b_ebuf))
- return; /* do nothing if at end of file */
- if (*(ptr(curbp, curbp->b_point)) == 0xa) {
- delete(); /* delete CR if at start of empty line */
- } else {
- curbp->b_mark = curbp->b_point;
- lnend();
- if (curbp->b_mark != curbp->b_point) copy_cut(TRUE, TRUE, FALSE);
- }
- }
- void copy_cut(int cut, int displaymsg, int internal)
- {
- char_t *p;
- /* if no mark or point == marker, nothing doing */
- if (curbp->b_mark == NOMARK || curbp->b_point == curbp->b_mark)
- return;
- if (scrap != NULL) {
- free(scrap);
- scrap = NULL;
- }
- if(cut && !internal)
- undoset(4, FALSE);
- if (curbp->b_point < curbp->b_mark) {
- /* point above marker: move gap under point, region = marker - point */
- (void) movegap(curbp, curbp->b_point);
- p = ptr(curbp, curbp->b_point);
- nscrap = curbp->b_mark - curbp->b_point;
- if(cut && currentcommand == KBD_DELETE_CHAR)
- for(point_t pt = curbp->b_mark-1; pt > curbp->b_point; pt--) {
- if(*ptr(curbp, pt) == '\n')
- curbp->b_line--;
- }
- } else {
- /* if point below marker: move gap under marker, region = point - marker */
- (void) movegap(curbp, curbp->b_mark);
- p = ptr(curbp, curbp->b_mark);
- nscrap = curbp->b_point - curbp->b_mark;
- if (cut && currentcommand != KBD_DELETE_CHAR)
- for(point_t pt = curbp->b_mark; pt < curbp->b_point; pt++) {
- if(*ptr(curbp, pt) == '\n')
- curbp->b_line--;
- }
- }
- if ((scrap = (char_t*) malloc(nscrap)) == NULL && displaymsg) {
- msg("No more memory available.");
- } else {
- (void) memcpy(scrap, p, nscrap * sizeof (char_t));
- if (cut) {
- curbp->b_egap += nscrap; /* if cut expand gap down */
- curbp->b_point = pos(curbp, curbp->b_egap); /* set point to after region */
- curbp->b_flags |= B_MODIFIED;
- if(displaymsg)
- msg("%ld bytes cut.", nscrap);
- currentcommand = KBD_CUT;
- } else {
- if(displaymsg)
- msg("%ld bytes copied.", nscrap);
- }
- curbp->b_mark = NOMARK; /* unmark */
- }
- }
- void paste_internal(int internal)
- {
- int new_rows = 0;
- int col = curwp->w_col - curwp->w_left + 1;
- point_t opoint = curbp->b_point;
- if(curbp->b_flags & B_OVERWRITE)
- return;
- if (nscrap <= 0) {
- msg("Scrap is empty. Nothing to paste.");
- } else if (nscrap < curbp->b_egap - curbp->b_gap || growgap(curbp, nscrap)) {
- if(!internal)
- undoset(5, FALSE);
- curbp->b_point = movegap(curbp, curbp->b_point);
- memcpy(curbp->b_gap, scrap, nscrap * sizeof (char_t));
- curbp->b_gap += nscrap;
- curbp->b_point = pos(curbp, curbp->b_egap);
- curbp->b_flags |= B_MODIFIED;
- /* TODO: this assumes 1 char = 1 point (not always true) */
- col += curbp->b_point - opoint;
- for(int i = 0, cc = col; scrap[i] != '\0'; i++) {
- cc++;
- if(scrap[i] == '\n' || cc >= curwp->w_cols) {
- new_rows++;
- cc = 0;
- }
- curbp->b_pcol = cc + curwp->w_left;
- }
- if (curbp->b_row + new_rows >= curwp->w_rows)
- curbp->b_reframe = 1;
- }
- }
- void paste()
- {
- paste_internal(FALSE);
- }
- void clipboard()
- {
- int new_rows = 0;
- int ntemp = strlen(gtemp);
- if(curbp->b_flags & B_OVERWRITE)
- return;
- if (ntemp <= 0) {
- msg("Temp buffer is empty. Nothing to paste.");
- } else if (ntemp < curbp->b_egap - curbp->b_gap || growgap(curbp, ntemp)) {
- undoset(CLIPBOARD, FALSE);
- curbp->b_point = movegap(curbp, curbp->b_point);
- memcpy(curbp->b_gap, gtemp, ntemp * sizeof (char_t));
- curbp->b_gap += ntemp;
- curbp->b_point = pos(curbp, curbp->b_egap);
- curbp->b_flags |= B_MODIFIED;
- for(int i = 0; gtemp[i] != '\0'; i++) {
- if(gtemp[i] == '\n')
- new_rows++;
- }
- if (curbp->b_row + new_rows > curwp->w_rows &&
- curbp->b_point >= curbp->b_epage)
- curbp->b_reframe = 1;
- free(gtemp);
- gtemp = malloc(sizeof(char) * TEMPBUF);
- }
- }
- void showpos()
- {
- int current, lastln;
- point_t end_p = pos(curbp, curbp->b_ebuf);
- get_line_stats(¤t, &lastln, curbp);
- if (curbp->b_point == end_p) {
- msg("[EOB] Line = %d/%d Point = %d/%d", current, lastln,
- curbp->b_point, ((curbp->b_ebuf - curbp->b_buf) - (curbp->b_egap - curbp->b_gap)));
- } else {
- char c = unctrl(*(ptr(curbp, curbp->b_point)));
- msg("Char = %c 0x%x Line = %d/%d Point = %d/%d", c, *(ptr(curbp, curbp->b_point)),
- current, lastln,
- curbp->b_point, ((curbp->b_ebuf - curbp->b_buf) - (curbp->b_egap - curbp->b_gap)));
- }
- }
- /* Delete whitespace between non-whitespace */
- void deletewhitespacebetween()
- {
- char_t *p;
- while (isspace(*(p = ptr(curbp, curbp->b_point - 1))) && curbp->b_buf < p && *p != '\n')
- backsp();
- while (isspace(*(p = ptr(curbp, curbp->b_point))) && curbp->b_buf < p && *p != '\n')
- delete();
- }
- void insertnewlinebelow()
- {
- char_t newline[2];
- newline[0] = '\n';
- newline[1] = '\0';
- input = newline;
- undoset(1, lastcommand == KBD_INSERT);
- insert();
- up();
- currentcommand = KBD_INSERT;
- }
- void insertnewline()
- {
- point_t point;
- char_t *p, *space = NULL, *str;
- int spaces = 0, i;
- point = segstart(curbp, curwp, lnstart(curbp, curbp->b_point), curbp->b_point);
- while(point < pos(curbp, curbp->b_ebuf) &&
- isspace(*(p = ptr(curbp, point))) &&
- *p != '\n' &&
- curwp->w_col != 0) {
- if(spaces == 0) {
- space = p;
- }
- if(*p != '\n') {
- spaces++;
- point++;
- }
- }
- str = (char_t *) malloc(sizeof(char_t)*spaces+2);
- str[0] = '\n';
- for(i = 0; i < spaces; i++) {
- str[i+1] = *space;
- }
- str[i+1] = '\0';
- input = str;
- insert_str();
- curbp->b_pcol = spaces + curwp->w_left;
- currentcommand = KBD_INSERT;
- free(str);
- if(curwp->w_row == curwp->w_rows-1) {
- curbp->b_reframe = TRUE;
- }
- }
- void inserttab()
- {
- input = (char_t *)"\t";
- undoset(1, FALSE);
- insert();
- }
- void inserttabasspace()
- {
- char_t spaces[TAB_SPACE_SIZE+1];
- memset(spaces, ' ', sizeof(spaces));
- spaces[TAB_SPACE_SIZE] = '\0';
- input = spaces;
- insert_str();
- }
- void suspend()
- {
- tb_shutdown();
- raise(SIGTSTP);
- }
- void transpose()
- {
- char_t *cur = ptr(curbp, curbp->b_point);
- char_t *prev = ptr(curbp, curbp->b_point-1);
- char_t replace[3];
- if(cur == curbp->b_ebuf) {
- return;
- }
- point_t mark = curbp->b_mark;
- replace[0] = *cur;
- replace[1] = *prev;
- replace[2] = '\0';
- curbp->b_point--;
- curbp->b_mark = curbp->b_point + 2;
- undoset(REPLACE, 2);
- curbp->b_mark = mark;
- curbp->b_point++;
- memcpy(ptr(curbp, curbp->b_point-1), replace, 2 * sizeof (char_t));
- curbp->b_flags |= B_MODIFIED;
- }
- /* Delete a word but don't display any messages. */
- void deleteword(int dir) {
- block();
- if(dir)
- wright();
- else
- wleft();
- copy_cut(TRUE, FALSE, TRUE);
- }
- /* Transpose words and put scrap back to how it was. */
- void transposeword()
- {
- char_t *current_scrap;
- int n_scrap = nscrap;
- point_t mark = curbp->b_mark, epoint, point;
- /* copy the current scrap */
- current_scrap = (char_t*) malloc(nscrap);
- (void) memcpy(current_scrap, scrap, nscrap * sizeof (char_t));
- /* Find all the key points for the undo */
- wright();
- epoint = curbp->b_point;
- wleft();
- wleft();
- curbp->b_mark = epoint;
- point = curbp->b_point;
- undoset(REPLACE, curbp->b_mark - point);
- /* Cut the word to the left*/
- curbp->b_mark = point;
- curbp->b_point = point;
- wright();
- copy_cut(TRUE, FALSE, TRUE);
- /* paste the left word */
- right();
- paste_internal(TRUE);
- /* cut the right word */
- curbp->b_mark = curbp->b_point;
- wright();
- copy_cut(TRUE, FALSE, TRUE);
- wleft();
- /* paste the right word */
- left();
- paste_internal(TRUE);
- /* Put it all back together */
- if (scrap != NULL) {
- free(scrap);
- scrap = NULL;
- }
- nscrap = n_scrap;
- scrap = (char_t*) malloc(nscrap);
- (void) memcpy(scrap, current_scrap, nscrap * sizeof (char_t));
- curbp->b_mark = mark;
- }
- void lowercaseword()
- {
- char_t *p, *word;
- char_t c[2];
- point_t sword, eword;
- int olast = lastcommand;
- while ((isspace(*(p = ptr(curbp, curbp->b_point))) || is_symbol(*p)) && p < curbp->b_ebuf)
- ++curbp->b_point;
- sword = curbp->b_point;
- wright();
- eword = curbp->b_point;
- word = (char_t *) malloc(sizeof(char_t)*(eword - sword));
- curbp->b_point = sword;
- lastcommand = KBD_DELETE_CHAR;
- for(int i = sword, k = 0; i < eword; i++, k++) {
- word[k] = *ptr(curbp, curbp->b_point);
- delete();
- }
- lastcommand = olast;
- for(int i = sword, k = 0; i < eword; i++, k++) {
- c[0] = tolower(word[k]);
- c[1] = '\0';
- input = c;
- undoset(INSERT, i != 0);
- insert();
- }
- free(word);
- }
- void capitalizeword()
- {
- char_t *p;
- while (isspace(*(p = ptr(curbp, curbp->b_point))) && p < curbp->b_ebuf)
- ++curbp->b_point;
- p = ptr(curbp, curbp->b_point);
- char_t c[1];
- c[0] = toupper(*p);
- input = c;
- delete();
- undoset(INSERT, FALSE);
- insert();
- if(isspace(*(p = ptr(curbp, curbp->b_point+1))) || is_symbol(*p))
- curbp->b_point++;
- else
- wright();
- }
- void uppercaseword()
- {
- char_t *p, *word;
- char_t c[2];
- point_t sword, eword;
- int olast = lastcommand;
- while ((isspace(*(p = ptr(curbp, curbp->b_point))) || is_symbol(*p)) && p < curbp->b_ebuf)
- ++curbp->b_point;
- sword = curbp->b_point;
- wright();
- eword = curbp->b_point;
- word = (char_t *) malloc(sizeof(char_t)*(eword - sword));
- curbp->b_point = sword;
- lastcommand = KBD_DELETE_CHAR;
- for(int i = sword, k = 0; i < eword; i++, k++) {
- word[k] = *ptr(curbp, curbp->b_point);
- delete();
- }
- lastcommand = olast;
- for(int i = sword, k = 0; i < eword; i++, k++) {
- c[0] = toupper(word[k]);
- c[1] = '\0';
- input = c;
- undoset(INSERT, i != 0);
- insert();
- }
- free(word);
- }
- /* type = 0, zap
- type = 1, jump
- */
- /* TODO: Throw error when putting non-char in.
- */
- void gotochar(int type)
- {
- char_t *p;
- point_t opoint = curbp->b_point, eol;
- int c, col = 0;
- struct tb_event ev;
- char *prompt = type == 0 ? "Zap to Char: " : "Jump to Char: ";
- if(character[0] == '\0') {
- display_prompt_and_response(prompt, character);
- tb_present();
- if(tb_poll_event(&ev) != TB_OK) return;
- if(!ev.mod)
- c = ev.ch;
- else
- c = ev.key;
- /* Ignore all control keys other than C-g and ESC*/
- if (c < 32 && c != TB_KEY_CTRL_G && c != TB_KEY_ESC)
- return;
- if(c == TB_KEY_CTRL_G || c == TB_KEY_ESC)
- return;
- else
- character[0] = c;
- display_prompt_and_response(prompt, character);
- tb_present();
- }
- if(type == 0) {
- block();
- }
- if(*ptr(curbp, curbp->b_point) == character[0] || curbp->b_point == 0) {
- if(negated)
- left();
- else
- right();
- }
- while (*(p = ptr(curbp, curbp->b_point)) != character[0] && p < curbp->b_ebuf && curbp->b_point > 0) {
- if(negated)
- left();
- else
- right();
- }
- if(type == 0 && !negated)
- right();
- if(type == 0)
- copy_cut(TRUE, FALSE, FALSE);
- tb_set_cursor(0, MSGLINE);
- clrtoeol("", MSGLINE);
- eol = lnstart(curbp, curbp->b_point);
- for(point_t poi = curbp->b_point; poi > eol; poi -= utf8_size(*ptr(curbp,poi)))
- col++;
- curbp->b_pcol = col + curwp->w_left;
- if(p >= ptr(curbp, curbp->b_epage)) {
- curbp->b_reframe = TRUE;
- }
- if((!negated && p >= curbp->b_ebuf) || (negated && curbp->b_point <= 0)) {
- msg("No match found.");
- curbp->b_point = opoint;
- }
- negated = FALSE;
- }
- void zaptochar()
- {
- gotochar(0);
- }
- void negated_zaptochar()
- {
- negated = TRUE;
- gotochar(0);
- }
- void jumptochar()
- {
- gotochar(1);
- }
- void negated_jumptochar()
- {
- negated = TRUE;
- gotochar(1);
- }
- void poptomark()
- {
- if(curbp->b_mark > -1)
- curbp->b_point = curbp->b_mark;
- else
- curbp->b_point = curbp->b_pmark;
- curbp->b_reframe = TRUE;
- }
- void universal_argument_load()
- {
- universal_argument++;
- msg("C-u %d", universal_argument);
- }
- void numeric_argument_load()
- {
- numeric_argument = (numeric_argument * 10) + atoi((const char *)&input_char);
- msg("C-u %d", numeric_argument);
- }
- void back_to_indentation()
- {
- char_t *p;
- while (isspace(*(p = ptr(curbp, curbp->b_point))) && p < curbp->b_ebuf)
- ++curbp->b_point;
- }
- void negate()
- {
- negated = !negated;
- msg("C-u -");
- }
- void forward_bracket()
- {
- point_t p, eol;
- int col = 0;
- if((p = find_matching_bracket(curbp, curwp, 1, FALSE)) >= 0)
- curbp->b_point = curbp->b_mark == NOMARK ? p : p + 1;
- /* Make sure the column memory updates to the new column */
- eol = lnstart(curbp, curbp->b_point);
- for(p = curbp->b_point; p > eol; p -= utf8_size(*ptr(curbp,p)))
- col++;
- curbp->b_pcol = col + curwp->w_left;
- }
- void backward_bracket()
- {
- point_t p, eol;
- int col = 0;
- if((p = find_matching_bracket(curbp, curwp, -1, FALSE)) >= 0) {
- curbp->b_point = p;
- if(curbp->b_mark != NOMARK)
- curbp->b_mark++;
- }
- /* Make sure the column memory updates to the new column */
- eol = lnstart(curbp, curbp->b_point);
- for(p = curbp->b_point; p > eol; p -= utf8_size(*ptr(curbp,p)))
- col++;
- curbp->b_pcol = col + curwp->w_left;
- }
- void start_kbd_macro()
- {
- record_input = TRUE;
- for(int i = 0; i < record_buffer_index; i++) {
- memset(&record_buffer[i], 0, sizeof(record_buffer[i]));
- }
- record_buffer_index = 0;
- msg("Started keyboard macro...");
- }
- void end_kbd_macro()
- {
- record_input = FALSE;
- msg("Ended keyboard macro.");
- }
- void run_kbd_macro()
- {
- if(numeric_argument > 0)
- numeric_argument--;
- execute_kbd_macro = TRUE;
- }
- void open_file_from_shell()
- {
- get_popen_data(1);
- }
- void insert_from_shell()
- {
- get_popen_data(0);
- }
- void insert_control_char()
- {
- struct tb_event ev;
- char *prompt = "Insert Control Char: ";
- display_prompt_and_response(prompt, character);
- tb_present();
- if(tb_poll_event(&ev) != TB_OK) return;
- tb_set_cursor(0, MSGLINE);
- clrtoeol("", MSGLINE);
- if(ev.key > 0x1a) {
- return;
- }
- input[0] = (char)ev.key;
- input[1] = '\0';
- undoset(1, lastcommand == KBD_INSERT);
- insert();
- currentcommand = KBD_INSERT;
- ignorenotbound = TRUE;
- }
|