small corrections

This commit is contained in:
Tomas Rivera
2026-04-01 09:49:12 +02:00
parent e731a0110a
commit 7289af7f7f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ make
- [x] Add a way to create vaults - [x] Add a way to create vaults
- [x] Add a way to delete vaults - [x] Add a way to delete vaults
- [ ] Add a way to delete notes - [ ] Add a way to delete notes
- [ ] Stylisize a bit the TUI - [x] Stylisize a bit the TUI
- [ ] Add more options to the config file - [ ] Add more options to the config file
- [ ] Search for config.json in other directories such as ~/.config/notewrapper/ and not only this directory - [ ] Search for config.json in other directories such as ~/.config/notewrapper/ and not only this directory
- [x] Port vivify.vim to nixpkgs - [x] Port vivify.vim to nixpkgs
+1 -1
View File
@@ -223,7 +223,7 @@ char** getNotesFromVault(char *pathToVault, char *vault, int *count, int debug)
return notesArray; return notesArray;
} }
char* ncursesSelect(char **options, char *optionsText, size_t optionsNumber, int extraOptionsNumber, int debug) { char* ncursesSelect(char **options, char *optionsText, size_t optionsNumber, size_t extraOptionsNumber, int debug) {
// this function is used multiple times let the user select one options from many. // this function is used multiple times let the user select one options from many.
// options is the array of strings with all the options. // options is the array of strings with all the options.
// one of this option will be returned // one of this option will be returned