functional lisp config files
Build and Deploy Docs / build (push) Successful in 47s

This commit is contained in:
Arthur Barraux
2025-10-02 11:26:18 +02:00
parent 53d6572c8c
commit 3b6c60a49e
16 changed files with 482 additions and 209 deletions
+27 -4
View File
@@ -1,10 +1,12 @@
#ifndef DATA_H_
#define DATA_H_
#include "../lisp-interpreter/dist/lisp.h"
#include <stdio.h>
#include <termios.h>
#include <time.h>
#include "../lisp-interpreter/dist/lisp.h"
/**
* \struct erow
* \brief Store one editor row
@@ -18,6 +20,18 @@ typedef struct erow {
char *render; /**< The actual line we will print */
} erow;
struct const_t {
int TAB_LENGTH;
int QUIT_TIMES;
};
struct keyBind_t {
char *key_sequence;
Lisp command;
};
/**
* \struct editorConfig
* \brief Containing our editor state.
@@ -36,9 +50,18 @@ struct editorConfig {
char status_msg[80];
time_t status_msg_time;
struct termios orig_termios; /**< Terminal communication interface */
LispContext ctx; /** Lisp context */
Lisp ctx_data; /** Lisp data context */
LispError ctx_error; /** Lisp ctx error */
struct const_t constantes;
int quit_times_buffer;
FILE *fd_init_file;
Lisp env;
LispContext ctx; /** Lisp context */
Lisp ctx_data; /** Lisp data context */
LispError ctx_error; /** Lisp ctx error */
struct keyBind_t* key_binds;
int number_of_keybinds;
};
/**