mirror of
https://github.com/tomasriveral/NoteWrapper.git
synced 2026-08-12 02:18:38 +02:00
Merge (#2) from tomasriveral/kakoune. Adds Kakoune support.
Kakoune: added initial support
This commit is contained in:
@@ -43,6 +43,7 @@ Before building NoteWrapper, you must install the following dependencies:
|
|||||||
You must also have a [supported editor (and their associated plugin if needed)](#editor-support) installed:
|
You must also have a [supported editor (and their associated plugin if needed)](#editor-support) installed:
|
||||||
|
|
||||||
* `helix`
|
* `helix`
|
||||||
|
* `kakoune`
|
||||||
* `nano`
|
* `nano`
|
||||||
* `neovim`
|
* `neovim`
|
||||||
* `vim`
|
* `vim`
|
||||||
@@ -141,8 +142,9 @@ The first two features depend on [Vivify's editor integration](https://github.co
|
|||||||
If your editor does not support these features, you can implement a plugin using [Vivify's API](https://github.com/jannis-baum/Vivify?tab=readme-ov-file#editor-support).
|
If your editor does not support these features, you can implement a plugin using [Vivify's API](https://github.com/jannis-baum/Vivify?tab=readme-ov-file#editor-support).
|
||||||
|
|
||||||
| Editor | Bufferless | Cursor | Jump to end | Plugin required |
|
| Editor | Bufferless | Cursor | Jump to end | Plugin required |
|
||||||
| ------ | ----------- | ------- | ------------ | --------------------------------------------------------|
|
| --------- | ----------- | ------- | ------------ | --------------------------------------------------------|
|
||||||
| Helix | ❌ | ❌ | ✅ | — |
|
| Helix | ❌ | ❌ | ✅ | — |
|
||||||
|
| Kakoune | ❌ | ❌ | ✅ | — |
|
||||||
| Nano | ❌ | ❌ | ✅ | — |
|
| Nano | ❌ | ❌ | ✅ | — |
|
||||||
| Neovim | ✅ | ✅ | ✅ | [vivify-vim](https://github.com/jannis-baum/vivify.vim) |
|
| Neovim | ✅ | ✅ | ✅ | [vivify-vim](https://github.com/jannis-baum/vivify.vim) |
|
||||||
| Vim | ✅ | ✅ | ✅ | [vivify-vim](https://github.com/jannis-baum/vivify.vim) |
|
| Vim | ✅ | ✅ | ✅ | [vivify-vim](https://github.com/jannis-baum/vivify.vim) |
|
||||||
@@ -202,5 +204,5 @@ It is recommended to use a browser different from your main one for rendering.
|
|||||||
|
|
||||||
* [ ] A converter between journal types
|
* [ ] A converter between journal types
|
||||||
* [ ] Support multiple vault directories
|
* [ ] Support multiple vault directories
|
||||||
* [ ] Port NoteWrapper to other editors (non-exhaustive list of planned ports: `emacs -nw`, `micro`, `jed`, kakoune, `ad`, flow-control, `ee`, `amp`, `dte`, `cano`, `mle`, `zee`, `ptext`, `kibi`, `ox`, `ne`, `nvi`, `dit`, `zile`, `moe`, `joe`)
|
* [ ] Port NoteWrapper to other editors (non-exhaustive list of planned ports: `emacs -nw`, `micro`, `jed`, `ad`, flow-control, `ee`, `amp`, `dte`, `cano`, `mle`, `zee`, `ptext`, `kibi`, `ox`, `ne`, `nvi`, `dit`, `zile`, `moe`, `joe`)
|
||||||
* [ ] Default to $EDITOR
|
* [ ] Default to $EDITOR
|
||||||
|
|||||||
+45
-4
@@ -1,9 +1,8 @@
|
|||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "string.h"
|
#include "string.h"
|
||||||
#include <stddef.h>
|
|
||||||
|
|
||||||
const char *supportedEditor[] = {"helix", "nano", "neovim", "vim"};
|
const char *supportedEditor[] = {"helix", "kakoune", "nano", "neovim", "vim"};
|
||||||
const int numEditors = 4;
|
const int numEditors = 5;
|
||||||
|
|
||||||
int compareString(const void *a, const void *b) {
|
int compareString(const void *a, const void *b) {
|
||||||
const char *str1 = *(const char **)a;
|
const char *str1 = *(const char **)a;
|
||||||
@@ -207,6 +206,8 @@ int doesEditorExist (char *editorToCheck, int shouldDebug) { // Some exectua
|
|||||||
editor = strdup("nvim"); // we must use strdup and not just copy as we would have modified editorToOpen in main
|
editor = strdup("nvim"); // we must use strdup and not just copy as we would have modified editorToOpen in main
|
||||||
} else if (strcmp(editorToCheck, "helix") == 0) {
|
} else if (strcmp(editorToCheck, "helix") == 0) {
|
||||||
editor = strdup("hx");
|
editor = strdup("hx");
|
||||||
|
} else if (strcmp(editorToCheck, "kakoune") == 0) {
|
||||||
|
editor = strdup("kak");
|
||||||
} else {
|
} else {
|
||||||
editor = strdup(editorToCheck);
|
editor = strdup(editorToCheck);
|
||||||
}
|
}
|
||||||
@@ -411,6 +412,7 @@ if (editor_pid == 0) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
error(1, "program", "execlp() failed.");
|
error(1, "program", "execlp() failed.");
|
||||||
|
// ---- HELIX ----
|
||||||
} else if (strcmp(editor, "helix") == 0) {
|
} else if (strcmp(editor, "helix") == 0) {
|
||||||
|
|
||||||
// If render enabled → spawn viv in parallel
|
// If render enabled → spawn viv in parallel
|
||||||
@@ -451,9 +453,48 @@ if (editor_pid == 0) {
|
|||||||
|
|
||||||
error(1, "program", "execlp() failed.");
|
error(1, "program", "execlp() failed.");
|
||||||
}
|
}
|
||||||
|
// ---- kakoune ----
|
||||||
|
else if (strcmp(editor, "kakoune") == 0) {
|
||||||
|
|
||||||
|
// If render enabled → spawn viv in parallel
|
||||||
|
if (render) {
|
||||||
|
debug("Running the editor...");
|
||||||
|
pid_t viv_pid = fork();
|
||||||
|
error(viv_pid < 0, "program", "fork() failed.");
|
||||||
|
|
||||||
|
if (viv_pid == 0) {
|
||||||
|
// GRANDCHILD → viv
|
||||||
|
|
||||||
|
|
||||||
|
char viv_path[PATH_MAX];
|
||||||
|
strncpy(viv_path, path, PATH_MAX - 1);
|
||||||
|
viv_path[PATH_MAX - 1] = '\0';
|
||||||
|
|
||||||
|
if (shouldJumpToEndOfFile) {
|
||||||
|
strncat(viv_path, ":99999",
|
||||||
|
PATH_MAX - strlen(viv_path) - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
debug("Running viv %s", viv_path);
|
||||||
|
execlp("viv", "viv", viv_path, NULL);
|
||||||
|
error(1, "program", "execlp() failed.");
|
||||||
|
}
|
||||||
|
// IMPORTANT: do NOT wait for viv
|
||||||
|
}
|
||||||
|
|
||||||
|
// Now run nano (this replaces the child process)
|
||||||
|
if (shouldJumpToEndOfFile) {
|
||||||
|
debug("Running kak + %s", path);
|
||||||
|
execlp("kak", "kak", "+", path, NULL);
|
||||||
|
} else {
|
||||||
|
debug("Running kak %s", path);
|
||||||
|
execlp("kak", "kak", path, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
error(1, "program", "execlp() failed.");
|
||||||
|
|
||||||
// ---- UNKNOWN EDITOR ----
|
// ---- UNKNOWN EDITOR ----
|
||||||
else {
|
} else {
|
||||||
error(1, "program", "Unknown editor.");
|
error(1, "program", "Unknown editor.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user